/* =========================================================
   MedicoPlus Modern Design System — medicoplus-modern.css
   AI-Era SEO & Premium Aesthetic Components
   ========================================================= */

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

/* ── CSS Variables ── */
:root {
  --mp-navy:   #07203C;
  --mp-blue:   #1565C0;
  --mp-teal:   #0f9b8e;
  --mp-teal2:  #00c9a7;
  --mp-accent: #00E5FF;
  --mp-text:   #1a2742;
  --mp-muted:  #5a6580;
  --mp-bg:     #f4f7fc;
  --mp-white:  #ffffff;
  --mp-glass:  rgba(255,255,255,0.12);
  --mp-glass2: rgba(255,255,255,0.07);
  --shadow-sm: 0 2px 12px rgba(15,155,142,.10);
  --shadow-md: 0 8px 32px rgba(15,155,142,.16);
  --shadow-lg: 0 20px 60px rgba(7,32,60,.18);
  --radius:    12px;
  --radius-lg: 20px;
  --transition: 0.28s cubic-bezier(.4,0,.2,1);
}

/* ── Global Font Override for new pages ── */
body.mp-page {
  font-family: 'Inter', 'Open Sans', sans-serif;
  color: var(--mp-text);
  background: var(--mp-bg);
}

/* ─────────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────────── */
.mp-hero {
  position: relative;
  padding: 80px 0 64px;
  background: linear-gradient(135deg, var(--mp-navy) 0%, #0d4a7a 50%, var(--mp-teal) 100%);
  overflow: hidden;
  color: #fff;
}

/* Animated gradient orbs */
.mp-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,.18) 0%, transparent 70%);
  animation: mp-float 8s ease-in-out infinite;
}
.mp-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,201,167,.15) 0%, transparent 70%);
  animation: mp-float 10s ease-in-out infinite reverse;
}

@keyframes mp-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

/* Grid noise texture overlay */
.mp-hero-inner {
  position: relative;
  z-index: 2;
}

.mp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: .82em;
  font-weight: 600;
  letter-spacing: .3px;
  margin-bottom: 22px;
  color: rgba(255,255,255,.95);
}
.mp-hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--mp-teal2);
  border-radius: 50%;
  animation: mp-pulse 2s infinite;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(0,201,167,.6);
}
@keyframes mp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,201,167,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(0,201,167,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,201,167,0); }
}

.mp-hero h1 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(1.8em, 3vw, 2.7em);
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 18px;
  color: #fff;
  letter-spacing: -.3px;
}

.mp-hero-grad-text {
  background: linear-gradient(90deg, var(--mp-teal2), var(--mp-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mp-hero p.lead {
  font-size: 1.08em;
  line-height: 1.75;
  opacity: .88;
  max-width: 600px;
  margin-bottom: 28px;
}

.mp-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.mp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, var(--mp-teal2), var(--mp-teal));
  color: #fff !important;
  border: none;
  padding: 13px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .97em;
  text-decoration: none !important;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(0,201,167,.35);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.mp-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.15), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.mp-btn-primary:hover::before { opacity: 1; }
.mp-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,201,167,.45);
  color: #fff !important;
}

.mp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.45);
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .97em;
  text-decoration: none !important;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.mp-btn-outline:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.8);
  transform: translateY(-2px);
  color: #fff !important;
}

.mp-hero-img {
  border-radius: var(--radius-lg);
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  animation: mp-img-in .8s cubic-bezier(.4,0,.2,1) both;
  border: 2px solid rgba(255,255,255,.12);
}
@keyframes mp-img-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* Breadcrumb */
.mp-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8em;
  opacity: .75;
  margin-top: 20px;
}
.mp-breadcrumb a { color: rgba(255,255,255,.85); text-decoration: none; }
.mp-breadcrumb a:hover { color: var(--mp-teal2); text-decoration: none; }
.mp-breadcrumb span { opacity: .55; }

/* ─────────────────────────────────────────────
   TRUST / COMPLIANCE STRIP
───────────────────────────────────────────── */
.mp-trust-strip {
  background: var(--mp-navy);
  padding: 22px 0;
  text-align: center;
  border-bottom: 3px solid var(--mp-teal);
}
.mp-trust-strip p {
  font-size: .8em;
  color: rgba(255,255,255,.5);
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.mp-badge-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.mp-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: .82em;
  color: rgba(255,255,255,.92);
  transition: background var(--transition), border-color var(--transition);
  cursor: default;
}
.mp-cert-badge:hover {
  background: rgba(0,201,167,.18);
  border-color: var(--mp-teal2);
}
.mp-cert-badge .check { color: var(--mp-teal2); font-size: 1em; }

/* ─────────────────────────────────────────────
   STATS BAR
───────────────────────────────────────────── */
.mp-stats-bar {
  background: linear-gradient(90deg, #ffffff, #f0f7ff);
  padding: 36px 0;
  border-bottom: 1px solid #e2eaf5;
}
.mp-stat {
  text-align: center;
  padding: 8px 20px;
  position: relative;
}
.mp-stat + .mp-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(180deg, transparent, #c8d9ef, transparent);
}
.mp-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.4em;
  font-weight: 800;
  background: linear-gradient(135deg, var(--mp-teal), var(--mp-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.mp-stat-label {
  font-size: .85em;
  color: var(--mp-muted);
  margin-top: 5px;
  font-weight: 500;
}

/* ─────────────────────────────────────────────
   SECTION STYLES
───────────────────────────────────────────── */
.mp-section { padding: 72px 0; }
.mp-section-alt {
  padding: 72px 0;
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
}
.mp-section-dark {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--mp-navy) 0%, #0d3a6e 100%);
  color: #fff;
}

.mp-section-label {
  display: inline-block;
  font-size: .78em;
  font-weight: 700;
  color: var(--mp-teal);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.mp-heading {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(1.5em, 2.5vw, 2.1em);
  font-weight: 800;
  color: var(--mp-navy);
  line-height: 1.28;
  margin-bottom: 14px;
  letter-spacing: -.2px;
}
.mp-section-dark .mp-heading { color: #fff; }

.mp-subheading {
  font-size: 1.0em;
  color: var(--mp-muted);
  line-height: 1.7;
  max-width: 580px;
}
.mp-section-dark .mp-subheading { color: rgba(255,255,255,.7); }

/* ─────────────────────────────────────────────
   FEATURE CARDS
───────────────────────────────────────────── */
.mp-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.mp-card {
  background: var(--mp-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid #e8edf5;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}
.mp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mp-teal), var(--mp-teal2));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.mp-card:hover::before { transform: scaleX(1); }
.mp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15,155,142,.2);
}

.mp-card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(15,155,142,.12), rgba(0,201,167,.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  color: var(--mp-teal);
  margin-bottom: 18px;
  transition: transform var(--transition), background var(--transition);
}
.mp-card:hover .mp-card-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, rgba(15,155,142,.2), rgba(0,201,167,.12));
}
.mp-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1em;
  font-weight: 700;
  color: var(--mp-navy);
  margin-bottom: 10px;
}
.mp-card p {
  font-size: .88em;
  color: var(--mp-muted);
  line-height: 1.65;
  margin: 0;
}

/* ─────────────────────────────────────────────
   INFO / HIGHLIGHT BOXES
───────────────────────────────────────────── */
.mp-mandate-box {
  background: linear-gradient(135deg, #fffbea, #fff8d6);
  border: 1.5px solid #f0c030;
  border-left: 5px solid #f0a500;
  border-radius: var(--radius);
  padding: 22px 28px;
  margin: 30px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.mp-mandate-box .mp-box-icon {
  font-size: 1.8em;
  margin-top: 2px;
  flex-shrink: 0;
}
.mp-mandate-box h4 {
  color: #6d4200;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 1em;
}
.mp-mandate-box p { color: #7d5100; margin: 0; font-size: .9em; line-height: 1.6; }

.mp-info-box {
  background: linear-gradient(135deg, #e9f7ff, #f0fbff);
  border: 1.5px solid #b3e0ff;
  border-left: 5px solid var(--mp-blue);
  border-radius: var(--radius);
  padding: 22px 28px;
  margin: 24px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.mp-info-box .mp-box-icon { font-size: 1.6em; flex-shrink: 0; margin-top: 2px; }
.mp-info-box h4 { color: var(--mp-navy); font-weight: 700; margin-bottom: 6px; font-size: .98em; }
.mp-info-box p { color: var(--mp-muted); margin: 0; font-size: .9em; line-height: 1.6; }

/* ─────────────────────────────────────────────
   ABOUT / CONTENT SECTION
───────────────────────────────────────────── */
.mp-check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.mp-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: .95em;
  color: var(--mp-text);
  line-height: 1.55;
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.mp-check-list li:last-child { border-bottom: none; }
.mp-check-list li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--mp-teal), var(--mp-teal2));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75em;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─────────────────────────────────────────────
   FAQ ACCORDION
───────────────────────────────────────────── */
.mp-faq-wrap {
  max-width: 820px;
  margin: 40px auto 0;
}
.mp-faq-item {
  border: 1.5px solid #e2eaf5;
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.mp-faq-item:hover, .mp-faq-item[open] {
  border-color: rgba(15,155,142,.4);
  box-shadow: 0 4px 20px rgba(15,155,142,.08);
}
.mp-faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  font-size: .97em;
  cursor: pointer;
  color: var(--mp-navy);
  background: #fafcff;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition), color var(--transition);
}
.mp-faq-item summary::-webkit-details-marker { display: none; }
.mp-faq-item summary::after {
  content: '+';
  font-size: 1.4em;
  font-weight: 400;
  color: var(--mp-teal);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 12px;
}
.mp-faq-item[open] summary { background: #f0f9f8; color: var(--mp-teal); }
.mp-faq-item[open] summary::after { content: '−'; }
.mp-faq-item .mp-faq-body {
  padding: 18px 22px;
  background: #fff;
  font-size: .93em;
  color: var(--mp-muted);
  line-height: 1.75;
  border-top: 1px solid #edf2fa;
}

/* ─────────────────────────────────────────────
   AI ANSWER BOX (for LLM-targeting snippets)
───────────────────────────────────────────── */
.mp-ai-answer {
  background: linear-gradient(135deg, #f4f9ff, #e8f4fd);
  border: 1.5px solid #c0d9f0;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}
.mp-ai-answer::before {
  content: '🤖';
  position: absolute;
  top: 18px; right: 22px;
  font-size: 1.5em;
  opacity: .25;
}
.mp-ai-answer-label {
  font-size: .72em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--mp-blue);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mp-ai-answer-label::before {
  content: '';
  width: 16px; height: 2px;
  background: var(--mp-blue);
  display: inline-block;
}
.mp-ai-answer h4 { color: var(--mp-navy); font-weight: 700; margin-bottom: 10px; font-size: 1em; }
.mp-ai-answer p { color: var(--mp-muted); font-size: .93em; line-height: 1.75; margin: 0; }

/* ─────────────────────────────────────────────
   CITY LINK CLOUD
───────────────────────────────────────────── */
.mp-city-section {
  padding: 48px 0;
  background: linear-gradient(180deg, #edf4fc, #f4f7fc);
  border-top: 1px solid #dce8f5;
}
.mp-city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.mp-city-chip {
  background: var(--mp-white);
  border: 1.5px solid #d0e0f5;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: .84em;
  font-weight: 600;
  color: var(--mp-navy);
  text-decoration: none !important;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.mp-city-chip::before { content: '📍'; font-size: .9em; }
.mp-city-chip:hover {
  background: var(--mp-teal);
  color: #fff !important;
  border-color: var(--mp-teal);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,155,142,.3);
}

/* ─────────────────────────────────────────────
   SCHEMA / AI SEO TABLE
───────────────────────────────────────────── */
.mp-compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: .9em;
}
.mp-compare-table thead tr {
  background: linear-gradient(90deg, var(--mp-navy), var(--mp-blue));
  color: #fff;
}
.mp-compare-table thead th {
  padding: 14px 18px;
  font-weight: 700;
  text-align: left;
}
.mp-compare-table tbody tr { background: #fff; transition: background var(--transition); }
.mp-compare-table tbody tr:nth-child(even) { background: #f6f9ff; }
.mp-compare-table tbody tr:hover { background: #e8f4fd; }
.mp-compare-table td { padding: 13px 18px; color: var(--mp-text); border-bottom: 1px solid #edf2fa; }
.mp-compare-table .mp-yes { color: var(--mp-teal); font-weight: 700; }
.mp-compare-table .mp-no  { color: #e53935; font-weight: 700; }

/* ─────────────────────────────────────────────
   HOW IT WORKS STEPS
───────────────────────────────────────────── */
.mp-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
  margin-top: 40px;
}
.mp-steps-grid::before {
  content:'';
  position: absolute;
  top: 40px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--mp-teal), var(--mp-blue));
  opacity: .3;
}
@media (max-width: 768px) { .mp-steps-grid::before { display: none; } }
.mp-step {
  text-align: center;
  padding: 20px 16px;
  position: relative;
  z-index: 1;
}
.mp-step-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--mp-teal), var(--mp-teal2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.2em;
  color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px rgba(15,155,142,.35);
}
.mp-step h4 { font-weight: 700; font-size: .95em; color: var(--mp-navy); margin-bottom: 8px; }
.mp-step p { font-size: .83em; color: var(--mp-muted); }

/* ─────────────────────────────────────────────
   GLASSMORPHISM CTA BANNER
───────────────────────────────────────────── */
.mp-cta-banner {
  background: linear-gradient(135deg, var(--mp-navy) 0%, #0d4a7a 50%, var(--mp-teal) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  margin: 0 0 40px;
}
.mp-cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
}
.mp-cta-banner h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8em;
  font-weight: 800;
  margin-bottom: 14px;
  color: #fff;
}
.mp-cta-banner p { opacity: .85; font-size: .97em; margin-bottom: 24px; }
.mp-cta-banner .mp-btn-primary { display: inline-flex; }

/* ─────────────────────────────────────────────
   SCROLL REVEAL ANIMATION
───────────────────────────────────────────── */
.mp-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.mp-reveal.mp-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.mp-stagger > *:nth-child(1) { transition-delay: 0s; }
.mp-stagger > *:nth-child(2) { transition-delay: .08s; }
.mp-stagger > *:nth-child(3) { transition-delay: .16s; }
.mp-stagger > *:nth-child(4) { transition-delay: .24s; }
.mp-stagger > *:nth-child(5) { transition-delay: .32s; }
.mp-stagger > *:nth-child(6) { transition-delay: .40s; }

/* ─────────────────────────────────────────────
   RESPONSIVE TWEAKS
───────────────────────────────────────────── */
@media (max-width: 991px) {
  .mp-hero { padding: 60px 0 48px; }
  .mp-hero h1 { font-size: 1.9em; }
  .mp-hero-img { margin-top: 30px; }
  .mp-stat::before { display: none; }
  .mp-steps-grid::before { display: none; }
  .mp-cta-banner { padding: 40px 24px; }
  .mp-cta-banner h2 { font-size: 1.4em; }
}
@media (max-width: 576px) {
  .mp-hero-cta { flex-direction: column; }
  .mp-btn-primary, .mp-btn-outline { width: 100%; justify-content: center; }
  .mp-feature-grid { grid-template-columns: 1fr; }
  .mp-heading { font-size: 1.4em; }
  .mp-mandate-box, .mp-info-box { flex-direction: column; }
}

/* =========================================
   MODERN NAVBAR & HEADER STYLES
   ========================================= */

.mp-header-modern .topb {
    background: linear-gradient(90deg, #ffffff, #f9fbff);
    border-bottom: 1px solid rgba(20, 177, 187, 0.1);
    padding: 10px 0;
}

.mp-header-modern .navbar-custom {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.mp-header-modern .navbar-custom .nav > li > a {
    color: #2c3e50 !important;
    font-weight: 600;
    font-size: 15px;
    padding: 25px 15px;
    text-transform: capitalize;
    transition: all 0.3s ease;
    position: relative;
    font-family: var(--font-primary);
}

.mp-header-modern .navbar-custom .nav > li > a:hover, 
.mp-header-modern .navbar-custom .nav > li.open > a,
.mp-header-modern .navbar-custom .nav > li > a:focus {
    color: #14B1BB !important;
    background: transparent !important;
}

.mp-header-modern .navbar-custom .nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #14B1BB, #17D0CD);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.mp-header-modern .navbar-custom .nav > li > a:hover::after,
.mp-header-modern .navbar-custom .nav > li.open > a::after {
    width: 30px;
}

/* Dropdown Menu Enhancements */
.mp-header-modern .dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
    margin-top: 0;
    background: #ffffff;
    animation: fadeInDown 0.3s ease forwards;
    opacity: 0;
    transform: translateY(10px);
    display: none;
}

.mp-header-modern .dropdown.open .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mp-header-modern .dropdown-menu > li > a {
    padding: 10px 25px;
    color: #4a5568 !important;
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 14px;
    display: block;
    border-left: 3px solid transparent;
}

.mp-header-modern .dropdown-menu > li > a:hover {
    background: #f8fafc !important;
    color: #14B1BB !important;
    border-left: 3px solid #14B1BB;
    padding-left: 30px;
}

/* Mega Menu Adjustments */
.mp-header-modern .mega-menu {
    width: 800px;
    left: 50% !important;
    transform: translateX(-30%);
    padding: 30px;
}

.mp-header-modern.dropdown.open .mega-menu {
    transform: translateX(-30%) translateY(0);
}

.mp-header-modern .d-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mp-header-modern .d-menu li {
    margin-bottom: 8px;
}

.mp-header-modern .d-menu li a {
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mp-header-modern .d-menu li a span {
    color: #14B1BB;
    font-size: 12px;
    transition: transform 0.2s ease;
}

.mp-header-modern .d-menu li a:hover {
    color: #14B1BB;
    transform: translateX(5px);
}

.mp-header-modern .d-menu li a:hover span {
    transform: translateX(3px);
}

/* Header Buttons / Phone */
.mp-header-modern .topb .right a {
    color: #2c3e50;
    font-weight: 600;
    transition: color 0.3s;
}

.mp-header-modern .topb .right a:hover {
    color: #14B1BB;
}

.mp-header-modern .topb button#popup1 {
    background: linear-gradient(90deg, #14B1BB, #17D0CD);
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(20, 177, 187, 0.3);
    transition: all 0.3s ease;
}

.mp-header-modern .topb button#popup1:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 177, 187, 0.4);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .mp-header-modern .mega-menu {
        width: 100%;
        left: 0 !important;
        transform: none !important;
    }
}


/* =========================================
   MODERN FOOTER STYLES
   ========================================= */

.mp-footer-modern {
    background: #1a1e23;
    color: #a0aec0;
    padding: 80px 0 0 0;
    position: relative;
    overflow: hidden;
}

.mp-footer-modern::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #14B1BB, #17D0CD);
}

.mp-footer-modern .footer-widget {
    margin-bottom: 40px;
}

.mp-footer-modern h3.widget-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.mp-footer-modern h3.widget-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 40px; height: 2px;
    background: #14B1BB;
}

.mp-footer-modern .about-widget p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.mp-footer-modern .about-widget .logo-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 20px;
}

.mp-footer-modern .contact-info ul {
    list-style: none;
    padding: 0; margin: 0;
}

.mp-footer-modern .contact-info ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.mp-footer-modern .contact-info ul li i {
    color: #14B1BB;
    font-size: 16px;
    margin-top: 5px;
}

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

.mp-footer-modern .footer-links li {
    margin-bottom: 12px;
}

.mp-footer-modern .footer-links li a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mp-footer-modern .footer-links li a i {
    font-size: 12px;
    color: #4a5568;
    transition: color 0.3s ease;
}

.mp-footer-modern .footer-links li a:hover {
    color: #14B1BB;
    padding-left: 5px;
}

.mp-footer-modern .footer-links li a:hover i {
    color: #14B1BB;
}

.mp-footer-modern .footer-bottom-bar {
    background: #111418;
    padding: 25px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mp-footer-modern .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.mp-footer-modern .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mp-footer-modern .social-links a:hover {
    background: #14B1BB;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(20, 177, 187, 0.3);
}

.mp-footer-modern .tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mp-footer-modern .tags-cloud a {
    background: rgba(255, 255, 255, 0.05);
    color: #a0aec0;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mp-footer-modern .tags-cloud a:hover {
    background: #14B1BB;
    color: #ffffff;
}

