/* ===========================================
   ClinixCore - Hospital Management Software
   Custom Stylesheet
   =========================================== */

:root {
  --cc-primary: #0a7cb9;          /* Medical blue */
  --cc-primary-dark: #075d8c;
  --cc-primary-light: #e8f4fb;
  --cc-secondary: #14b8a6;        /* Teal */
  --cc-accent: #16a34a;           /* Green */
  --cc-dark: #0f172a;
  --cc-muted: #64748b;
  --cc-light: #f8fafc;
  --cc-border: #e2e8f0;
  --cc-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --cc-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  --cc-shadow-lg: 0 20px 50px rgba(10, 124, 185, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: #1e293b;
  line-height: 1.65;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  color: var(--cc-dark);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.2; }
h3 { font-size: 1.4rem; }

a { color: var(--cc-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--cc-primary-dark); }

.text-muted-2 { color: var(--cc-muted) !important; }

/* ============ TOPBAR ============ */
.topbar {
  background: var(--cc-dark);
  color: #cbd5e1;
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar a { color: #cbd5e1; margin-right: 18px; }
.topbar a:hover { color: #fff; }
.topbar .social a { margin-left: 12px; margin-right: 0; }

/* ============ NAVBAR ============ */
.navbar {
  background-color: #fff !important;
  box-shadow: var(--cc-shadow-sm);
  padding: 14px 0;
}
.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--cc-dark) !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-brand .brand-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--cc-primary), var(--cc-secondary));
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}
.navbar-brand span.brand-text { color: var(--cc-dark); }
.navbar-brand span.brand-accent { color: var(--cc-primary); }

.navbar-nav .nav-link {
  color: var(--cc-dark) !important;
  font-weight: 500;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: all .2s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--cc-primary) !important;
  background: var(--cc-primary-light);
}

.dropdown-menu {
  border: none;
  box-shadow: var(--cc-shadow);
  border-radius: 10px;
  padding: 10px;
}
.dropdown-item { border-radius: 6px; padding: 8px 14px; font-weight: 500; }
.dropdown-item:hover { background: var(--cc-primary-light); color: var(--cc-primary); }

/* ============ BUTTONS ============ */
.btn {
  border-radius: 8px;
  font-weight: 600;
  padding: 10px 22px;
  transition: all .25s ease;
  border-width: 2px;
}
.btn-primary {
  background-color: var(--cc-primary);
  border-color: var(--cc-primary);
  color: #fff;
}
.btn-primary:hover {
  background-color: var(--cc-primary-dark);
  border-color: var(--cc-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--cc-shadow);
}
.btn-outline-primary {
  color: var(--cc-primary);
  border-color: var(--cc-primary);
}
.btn-outline-primary:hover {
  background-color: var(--cc-primary);
  border-color: var(--cc-primary);
  transform: translateY(-2px);
}
.btn-success {
  background-color: var(--cc-accent);
  border-color: var(--cc-accent);
}
.btn-success:hover { background-color: #138a3f; border-color: #138a3f; transform: translateY(-2px); }

.btn-light {
  background: #fff;
  color: var(--cc-primary);
  border-color: #fff;
}
.btn-light:hover {
  background: var(--cc-primary-light);
  border-color: var(--cc-primary-light);
  color: var(--cc-primary-dark);
}

.btn-lg { padding: 13px 28px; font-size: 1rem; }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: linear-gradient(135deg, #e8f4fb 0%, #f0fdfa 100%);
  padding: 90px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(20,184,166,.18), transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -150px; left: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(10,124,185,.15), transparent 70%);
  border-radius: 50%;
}
.hero .container { position: relative; z-index: 2; }

.hero .badge-pill {
  background: rgba(10,124,185,.1);
  color: var(--cc-primary);
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 .highlight {
  color: var(--cc-primary);
  background: linear-gradient(120deg, transparent 0% 60%, rgba(20,184,166,.25) 60% 100%);
}
.hero p.lead {
  font-size: 1.15rem;
  color: var(--cc-muted);
  margin-bottom: 30px;
  max-width: 580px;
}
.hero-cta-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.hero-cta-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cc-muted);
  font-weight: 500;
}
.hero-cta-list li i { color: var(--cc-accent); font-size: 1.2rem; }

.hero-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--cc-shadow-lg);
}
.hero-image img { width: 100%; display: block; }

.hero-floating-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: var(--cc-shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-floating-card .icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--cc-primary-light);
  color: var(--cc-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.hero-floating-card.bottom-left { bottom: 20px; left: -18px; }
.hero-floating-card.top-right { top: 30px; right: -22px; }
.hero-floating-card .small { color: var(--cc-muted); font-size: .8rem; }
.hero-floating-card strong { display: block; color: var(--cc-dark); font-size: 1rem; }

/* ============ PAGE BANNER (inner pages) ============ */
.page-banner {
  background: linear-gradient(135deg, var(--cc-primary) 0%, var(--cc-primary-dark) 100%);
  color: #fff;
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,.08), transparent 70%);
  border-radius: 50%;
}
.page-banner h1 { color: #fff; margin-bottom: 12px; }
.page-banner .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  justify-content: center;
}
.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a { color: rgba(255,255,255,.85); }
.page-banner .breadcrumb-item.active { color: #fff; font-weight: 600; }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }

/* ============ SECTIONS ============ */
section { padding: 80px 0; }

.section-title { text-align: center; margin-bottom: 50px; }
.section-title .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--cc-primary);
  margin-bottom: 12px;
  display: inline-block;
}
.section-title h2 { margin-bottom: 14px; }
.section-title p { color: var(--cc-muted); max-width: 720px; margin: 0 auto; font-size: 1.05rem; }

.bg-light-blue { background-color: #f5fafd; }
.bg-soft { background-color: var(--cc-light); }

/* ============ STAT BAND ============ */
.stat-band {
  background: linear-gradient(135deg, var(--cc-primary), var(--cc-primary-dark));
  color: #fff;
  padding: 50px 0;
}
.stat-band .stat { text-align: center; }
.stat-band .stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1;
}
.stat-band .stat-label { color: rgba(255,255,255,.85); font-size: 0.95rem; }

/* ============ FEATURE CARDS ============ */
.feature-card {
  background: #fff;
  border: 1px solid var(--cc-border);
  border-radius: 14px;
  padding: 28px 24px;
  height: 100%;
  transition: all .3s ease;
  position: relative;
}
.feature-card:hover {
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: var(--cc-shadow);
}
.feature-card .icon-box {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: var(--cc-primary-light);
  color: var(--cc-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.feature-card.green .icon-box { background: #e7f7ed; color: var(--cc-accent); }
.feature-card.teal .icon-box { background: #e0f7f4; color: var(--cc-secondary); }
.feature-card.orange .icon-box { background: #fff4e6; color: #f97316; }
.feature-card.purple .icon-box { background: #f3e8ff; color: #9333ea; }
.feature-card.red .icon-box { background: #ffe5e5; color: #dc2626; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature-card p { color: var(--cc-muted); margin: 0; font-size: 0.95rem; }

/* ============ MODULE GRID (large) ============ */
.module-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  border: 1px solid var(--cc-border);
  transition: all .3s ease;
}
.module-card:hover {
  border-color: var(--cc-primary);
  box-shadow: var(--cc-shadow);
  transform: translateY(-4px);
}
.module-card .module-icon {
  width: 64px; height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cc-primary), var(--cc-secondary));
  color: #fff;
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.module-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.module-card ul { padding-left: 0; list-style: none; margin: 14px 0 0; }
.module-card ul li {
  padding: 5px 0 5px 26px;
  position: relative;
  color: var(--cc-muted);
  font-size: 0.93rem;
}
.module-card ul li::before {
  content: "\F26A";
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0; top: 5px;
  color: var(--cc-accent);
  font-weight: bold;
}

/* ============ ABOUT/INFO BLOCK ============ */
.info-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--cc-shadow);
  position: relative;
}
.info-image img { width: 100%; display: block; }
.info-image .badge-overlay {
  position: absolute;
  bottom: 20px; left: 20px;
  background: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: var(--cc-shadow);
  display: flex; align-items: center; gap: 12px;
}
.info-image .badge-overlay .num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--cc-primary);
}

.check-list { list-style: none; padding: 0; margin: 24px 0 0; }
.check-list li {
  position: relative;
  padding: 8px 0 8px 36px;
  color: #334155;
  font-weight: 500;
}
.check-list li::before {
  content: "\F26A";
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0; top: 8px;
  width: 24px; height: 24px;
  background: #e7f7ed;
  border-radius: 50%;
  text-align: center;
  color: var(--cc-accent);
  font-weight: bold;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}

/* ============ SOLUTIONS ============ */
.solution-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--cc-shadow-sm);
  transition: all .3s ease;
  height: 100%;
  border: 1px solid var(--cc-border);
}
.solution-card:hover { box-shadow: var(--cc-shadow); transform: translateY(-4px); }
.solution-card .img-wrap {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.solution-card .img-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,23,42,.4));
}
.solution-card .img-wrap .tag {
  position: absolute;
  top: 16px; left: 16px;
  background: #fff;
  color: var(--cc-primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}
.solution-card .body { padding: 24px; }
.solution-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.solution-card p { color: var(--cc-muted); font-size: 0.95rem; margin: 0 0 14px; }

/* ============ INTEGRATIONS ============ */
.integration-card {
  background: #fff;
  border: 1px solid var(--cc-border);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  height: 100%;
  transition: all .3s ease;
}
.integration-card:hover {
  border-color: var(--cc-primary);
  box-shadow: var(--cc-shadow);
  transform: translateY(-4px);
}
.integration-logo {
  width: 70px; height: 70px;
  border-radius: 14px;
  background: var(--cc-primary-light);
  color: var(--cc-primary);
  font-size: 2rem;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.integration-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.integration-card p { color: var(--cc-muted); font-size: 0.9rem; margin: 0; }

/* ============ TESTIMONIAL ============ */
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  border: 1px solid var(--cc-border);
  position: relative;
}
.testimonial-card .quote-icon {
  position: absolute;
  top: -16px; left: 28px;
  width: 48px; height: 48px;
  background: var(--cc-primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.testimonial-card p { color: #475569; font-style: italic; margin: 18px 0 22px; }
.testimonial-card .stars { color: #f59e0b; margin-bottom: 14px; }
.testimonial-card .author {
  display: flex; align-items: center; gap: 14px;
}
.testimonial-card .author-img {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cc-primary), var(--cc-secondary));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.testimonial-card .author-info strong { display: block; color: var(--cc-dark); }
.testimonial-card .author-info span { color: var(--cc-muted); font-size: 0.88rem; }

/* ============ PROCESS / TIMELINE ============ */
.process-item {
  text-align: center;
  position: relative;
  padding: 0 16px;
}
.process-item .step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cc-primary), var(--cc-secondary));
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: var(--cc-shadow);
}
.process-item h4 { font-size: 1.1rem; margin-bottom: 10px; }
.process-item p { color: var(--cc-muted); font-size: 0.95rem; }

/* ============ PRICING / PLANS (no prices) ============ */
.plan-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  height: 100%;
  border: 2px solid var(--cc-border);
  transition: all .3s ease;
  position: relative;
}
.plan-card:hover { box-shadow: var(--cc-shadow); transform: translateY(-4px); }
.plan-card.featured {
  border-color: var(--cc-primary);
  background: linear-gradient(180deg, var(--cc-primary-light) 0%, #fff 100%);
}
.plan-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--cc-primary);
  color: #fff;
  padding: 5px 16px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.plan-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.plan-card .plan-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--cc-primary-light);
  color: var(--cc-primary);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.plan-card .plan-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cc-primary);
  margin: 18px 0 6px;
}
.plan-card .plan-price-sub { color: var(--cc-muted); font-size: 0.9rem; margin-bottom: 22px; }
.plan-card ul { list-style: none; padding: 0; margin: 0 0 26px; }
.plan-card ul li {
  padding: 9px 0 9px 28px;
  position: relative;
  color: #334155;
  font-size: 0.95rem;
  border-bottom: 1px dashed var(--cc-border);
}
.plan-card ul li:last-child { border-bottom: none; }
.plan-card ul li::before {
  content: "\F26A";
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0; top: 9px;
  color: var(--cc-accent);
  font-weight: bold;
}

/* ============ FAQ ============ */
.accordion-item {
  border: 1px solid var(--cc-border) !important;
  border-radius: 12px !important;
  margin-bottom: 14px;
  overflow: hidden;
}
.accordion-button {
  background: #fff !important;
  font-weight: 600;
  color: var(--cc-dark);
  padding: 18px 22px;
  border-radius: 12px !important;
}
.accordion-button:not(.collapsed) {
  color: var(--cc-primary);
  background: var(--cc-primary-light) !important;
  box-shadow: none;
}
.accordion-button:focus { box-shadow: none; border-color: var(--cc-border); }
.accordion-body { padding: 18px 22px; color: #475569; line-height: 1.7; }

/* ============ CTA BAND ============ */
.cta-band {
  background: linear-gradient(135deg, var(--cc-primary) 0%, var(--cc-secondary) 100%);
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.1), transparent 70%);
  border-radius: 50%;
}
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { font-size: 1.1rem; opacity: 0.95; max-width: 720px; margin: 0 auto 26px; }

/* ============ CONTACT ============ */
.contact-card {
  background: #fff;
  border: 1px solid var(--cc-border);
  border-radius: 14px;
  padding: 28px;
  height: 100%;
  text-align: center;
  transition: all .3s ease;
}
.contact-card:hover {
  border-color: var(--cc-primary);
  box-shadow: var(--cc-shadow);
  transform: translateY(-4px);
}
.contact-card .icon-box {
  width: 64px; height: 64px;
  background: var(--cc-primary-light);
  color: var(--cc-primary);
  border-radius: 14px;
  font-size: 1.7rem;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.contact-card h4 { font-size: 1.15rem; margin-bottom: 10px; }
.contact-card a { color: var(--cc-primary); font-weight: 600; }

.contact-form {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--cc-shadow);
}
.form-control, .form-select {
  border-radius: 8px;
  border-color: var(--cc-border);
  padding: 12px 14px;
  font-size: 0.96rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--cc-primary);
  box-shadow: 0 0 0 3px rgba(10,124,185,.15);
}
.form-label { font-weight: 600; color: var(--cc-dark); margin-bottom: 6px; }

/* ============ FOOTER ============ */
.footer {
  background: var(--cc-dark);
  color: #cbd5e1;
  padding: 70px 0 0;
}
.footer h5 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer p { color: #94a3b8; font-size: 0.94rem; line-height: 1.7; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a {
  color: #cbd5e1;
  font-size: 0.94rem;
  transition: all .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer ul li a:hover { color: #fff; padding-left: 4px; }
.footer ul li a::before {
  content: "\F285";
  font-family: 'bootstrap-icons';
  font-size: 0.8rem;
  color: var(--cc-secondary);
}

.footer .footer-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.footer .footer-brand .brand-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--cc-primary), var(--cc-secondary));
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

.footer .contact-info { margin-top: 18px; }
.footer .contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: #94a3b8;
  font-size: 0.94rem;
}
.footer .contact-info li i {
  color: var(--cc-secondary);
  font-size: 1.1rem;
  margin-top: 2px;
}

.footer .social-links { display: flex; gap: 10px; margin-top: 20px; }
.footer .social-links a {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: #cbd5e1;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .2s ease;
}
.footer .social-links a::before { display: none; }
.footer .social-links a:hover {
  background: var(--cc-primary);
  color: #fff;
  padding-left: 0;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 50px;
  padding: 22px 0;
  color: #94a3b8;
  font-size: 0.88rem;
}
.footer-bottom a { color: #cbd5e1; }
.footer-bottom a:hover { color: #fff; }

/* ============ FLOATING WHATSAPP ============ */
.float-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(37,211,102,.4);
  z-index: 999;
  transition: all .25s ease;
}
.float-wa:hover { transform: scale(1.1); color: #fff; }

/* ============ UTILITIES ============ */
.divider {
  width: 60px; height: 4px;
  background: var(--cc-primary);
  border-radius: 4px;
  margin: 0 auto 20px;
}

@media (max-width: 991px) {
  section { padding: 60px 0; }
  .hero { padding: 60px 0; }
  .hero-floating-card { display: none; }
  .navbar-nav { padding: 14px 0; }
  .navbar-nav .nav-link { padding: 10px 14px !important; }
  .hero p.lead { font-size: 1.05rem; }
}

@media (max-width: 575px) {
  section { padding: 50px 0; }
  .hero { padding: 40px 0; }
  .stat-band .stat-num { font-size: 2rem; }
  .float-wa { width: 50px; height: 50px; font-size: 1.5rem; bottom: 18px; right: 18px; }
}
