/* Alexander Lifesciences — Mockup Stylesheet */

:root {
  --navy: #0d3b66;
  --navy-dark: #082847;
  --teal: #1a8a7d;
  --teal-light: #22a99a;
  --gold: #c9a227;
  --light: #f4f7fa;
  --text: #2c3e50;
  --text-muted: #6c7a89;
  --border: #dde4ec;
  --shadow: 0 4px 24px rgba(13, 59, 102, 0.08);
  --shadow-lg: 0 12px 40px rgba(13, 59, 102, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--navy);
}

/* ── Accessibility ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--teal);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 0 0 6px 6px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* ── Top Bar ── */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
}

.top-bar a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.top-bar a:hover { color: var(--teal-light); }

.top-bar-contacts {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

@media (max-width: 575px) {
  .top-bar-contacts .top-phone { display: none; }
  .top-bar { font-size: 0.78rem; }
}

/* ── Navbar ── */
.navbar-brand img {
  height: 48px;
  width: auto;
}

.brand-name {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.2;
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.navbar-alex {
  background: #fff;
  box-shadow: var(--shadow);
  padding: 0.65rem 0;
}

.navbar-alex .navbar-toggler {
  border: 1px solid var(--border);
  padding: 0.4rem 0.55rem;
}

.navbar-alex .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(26, 138, 125, 0.2);
}

.navbar-alex .nav-link {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color 0.2s;
}

.navbar-alex .nav-link:hover,
.navbar-alex .nav-link.active {
  color: var(--teal);
}

.navbar-alex .nav-link.active:not(.dropdown-toggle)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.navbar-alex .dropdown-toggle.active::after {
  display: none;
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  padding: 0.5rem;
  margin-top: 0.5rem;
  --bs-dropdown-link-active-bg: rgba(26, 138, 125, 0.1);
  --bs-dropdown-link-active-color: var(--teal);
}

.dropdown-item {
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 6px;
  padding: 0.5rem 1rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: var(--light);
  color: var(--teal);
}

.dropdown-item.active {
  background: rgba(26, 138, 125, 0.1);
  color: var(--teal);
  font-weight: 600;
}

.navbar-alex .btn-teal.btn-sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.88rem;
}

.navbar-alex .btn-teal.active-nav-btn {
  background: var(--navy);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.2);
}

@media (max-width: 991px) {
  .navbar-alex .navbar-collapse {
    padding: 1rem 0 0.5rem;
    border-top: 1px solid var(--border);
    margin-top: 0.75rem;
  }

  .navbar-alex .nav-link.active:not(.dropdown-toggle)::after {
    display: none;
  }

  .navbar-alex .nav-item .btn-teal {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
  }
}

/* ── Buttons ── */
.btn-teal {
  background: var(--teal);
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 0.7rem 1.8rem;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-teal:hover,
.btn-teal:focus {
  background: var(--teal-light);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 138, 125, 0.3);
}

.btn-outline-navy {
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 600;
  padding: 0.65rem 1.6rem;
  border-radius: 6px;
  background: transparent;
  transition: all 0.2s;
}

.btn-outline-navy:hover,
.btn-outline-navy:focus {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.btn-outline-light-custom {
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  font-weight: 600;
  padding: 0.7rem 1.8rem;
  border-radius: 6px;
  background: transparent;
  transition: all 0.2s;
}

.btn-outline-light-custom:hover,
.btn-outline-light-custom:focus {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0.3;
}

.hero-bg-lab {
  background-image: url('../images/hero-lab.png');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,40,71,0.94) 0%, rgba(13,59,102,0.88) 45%, rgba(26,138,125,0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 4.5rem 0;
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.hero-content .lead {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 620px;
  font-weight: 400;
}

.hero-badge {
  background: rgba(255,255,255,0.95) !important;
  color: var(--navy) !important;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.hero-actions {
  margin-top: 1.75rem;
  margin-bottom: 2.5rem;
}

.hero-motto {
  border-left: 4px solid var(--gold);
  padding-left: 1.2rem;
  margin-top: 0;
  font-style: italic;
  opacity: 0.92;
  max-width: 560px;
  font-size: 0.98rem;
  line-height: 1.65;
}

.hero-motto cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* ── Section Utilities ── */
.section { padding: 5rem 0; }
.section-light { background: var(--light); }
.section-title { margin-bottom: 0.5rem; }
.section-subtitle {
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.section-label-light {
  color: rgba(255,255,255,0.65);
}

/* ── Page Header ── */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 60%, var(--teal) 100%);
  color: #fff;
  padding: 3.5rem 0 3rem;
}

.page-header h1 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.page-header p {
  opacity: 0.88;
  max-width: 600px;
  margin: 0;
  font-size: 1.05rem;
}

.breadcrumb-alex {
  background: none;
  padding: 0;
  margin-bottom: 1rem;
}

.breadcrumb-alex .breadcrumb-item a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-alex .breadcrumb-item a:hover { color: #fff; }
.breadcrumb-alex .breadcrumb-item.active { color: rgba(255,255,255,0.5); }
.breadcrumb-alex .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ── Feature Cards ── */
.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  height: 100%;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}

@media (hover: hover) {
  .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: #fff;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.feature-icon .bi,
.feature-icon i[class*="bi-"] {
  font-family: "bootstrap-icons" !important;
  font-size: 1.45rem;
  line-height: 1;
  display: block;
  color: #fff;
}

/* Fallback glyphs when icon markup was stripped by the editor */
.feature-icon:empty::before {
  font-family: "bootstrap-icons" !important;
  content: "\f26a";
  line-height: 1;
  font-style: normal;
  font-weight: normal;
}

.row.g-4 > [class*="col-"]:nth-child(1) .feature-icon:empty::before { content: "\f42f"; }
.row.g-4 > [class*="col-"]:nth-child(2) .feature-icon:empty::before { content: "\f50d"; }
.row.g-4 > [class*="col-"]:nth-child(3) .feature-icon:empty::before { content: "\f64d"; }
.row.g-4 > [class*="col-"]:nth-child(4) .feature-icon:empty::before { content: "\f3ee"; }
.row.g-4 > [class*="col-"]:nth-child(5) .feature-icon:empty::before { content: "\f4c9"; }
.row.g-4 > [class*="col-"]:nth-child(6) .feature-icon:empty::before { content: "\f638"; }

.section.section-light .row.g-4 > [class*="col-"]:nth-child(1) .feature-icon:empty::before { content: "\f341"; }
.section.section-light .row.g-4 > [class*="col-"]:nth-child(2) .feature-icon:empty::before { content: "\f1a3"; }
.section.section-light .row.g-4 > [class*="col-"]:nth-child(3) .feature-icon:empty::before { content: "\f6b0"; }
.section.section-light .row.g-4 > [class*="col-"]:nth-child(4) .feature-icon:empty::before { content: "\f3ee"; }

.stat-card-number {
  color: var(--teal);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

/* ── Stats ── */
.stats-bar {
  background: var(--navy);
  color: #fff;
  padding: 3rem 0;
}

.stat-item { text-align: center; padding: 0.5rem; }

.stat-number {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--teal-light);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.78rem;
  opacity: 0.85;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

/* ── Images ── */
.img-block {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--light);
}

.img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.img-block-tall {
  min-height: 380px;
}

.img-block-tall img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center top;
}
.img-block-medium { min-height: 400px; }

/* ── Motto Banner ── */
.motto-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: #fff;
  padding: 4.5rem 0;
  text-align: center;
}

.motto-banner blockquote {
  font-size: clamp(1.15rem, 3vw, 1.65rem);
  font-style: italic;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.65;
  border: none;
  padding: 0;
  color: rgba(255,255,255,0.95);
}

.motto-banner cite {
  display: block;
  margin-top: 1.2rem;
  font-style: normal;
  font-size: 0.9rem;
  opacity: 0.65;
}

/* ── Product Tables ── */
.product-search { max-width: 400px; width: 100%; }

.product-search .form-control {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem 1rem 0.6rem 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236c7a89' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001q.044.06.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1 1 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0.85rem center;
}

.product-search .form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26, 138, 125, 0.15);
}

.table-wrap {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.table-alex {
  font-size: 0.88rem;
  margin-bottom: 0;
}

.table-alex thead {
  background: var(--navy);
  color: #fff;
}

.table-alex thead th {
  font-weight: 600;
  padding: 0.9rem 1rem;
  border: none;
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--navy);
}

.table-alex tbody tr { transition: background 0.15s; }
.table-alex tbody tr:nth-child(even) { background: rgba(244, 247, 250, 0.7); }
.table-alex tbody tr:hover { background: rgba(26, 138, 125, 0.08); }

.table-alex tbody td {
  padding: 0.8rem 1rem;
  vertical-align: middle;
  border-color: var(--border);
}

.table-alex tbody td:first-child {
  color: var(--text-muted);
  font-weight: 600;
  width: 3rem;
}

.badge-up {
  background: rgba(201, 162, 39, 0.15);
  color: #8a6d10;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.3em 0.7em;
  border-radius: 4px;
  white-space: nowrap;
}

.badge-dev {
  background: rgba(26, 138, 125, 0.12);
  color: var(--teal);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.3em 0.7em;
  border-radius: 4px;
  white-space: nowrap;
}

.table-result-count {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── Tabs ── */
.nav-tabs-alex {
  border-bottom: 2px solid var(--border);
  gap: 0.25rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-tabs-alex .nav-link {
  color: var(--text-muted);
  font-weight: 600;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  padding: 0.75rem 1.5rem;
  margin-bottom: -2px;
  white-space: nowrap;
}

.nav-tabs-alex .nav-link:hover { color: var(--navy); }
.nav-tabs-alex .nav-link.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
  background: none;
}

/* ── Capability Tags ── */
.capability-tag {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  margin: 0.25rem;
  color: var(--navy);
  transition: all 0.2s;
}

@media (hover: hover) {
  .capability-tag:hover {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
  }
}

/* ── Facility List ── */
.facility-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.facility-list li:last-child { border-bottom: none; }
.facility-list li i {
  color: var(--teal);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* ── Accordion ── */
.accordion-alex .accordion-item {
  border: 1px solid var(--border);
  border-radius: 8px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.accordion-alex .accordion-button {
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  box-shadow: none;
  padding: 1rem 1.25rem;
}

.accordion-alex .accordion-button:not(.collapsed) {
  background: var(--light);
  color: var(--teal);
}

.accordion-alex .accordion-button:focus {
  box-shadow: none;
  border-color: var(--border);
}

.accordion-alex .accordion-body {
  padding: 1rem 1.25rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ── Contact ── */
.contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  height: 100%;
  border: 1px solid var(--border);
}

.contact-card h5 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.contact-card a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover { color: var(--teal-light); text-decoration: underline; }

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(26, 138, 125, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26, 138, 125, 0.15);
}

.contact-form .form-label {
  color: var(--navy);
}

.map-section {
  padding-bottom: 0;
}

.map-placeholder {
  background: var(--light);
  border-radius: 12px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.map-placeholder i,
.map-placeholder .map-icon { color: var(--teal); }

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  color: #fff;
  padding: 4.5rem 0;
  text-align: center;
  margin-bottom: 0;
}

.cta-section h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
}

.cta-section p {
  opacity: 0.92;
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* Footer sits flush after CTA — no gap */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
  margin-top: 0;
}

.footer-logo {
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: opacity 0.2s;
}

.footer-logo:hover { opacity: 1; }

.footer h5 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer a:hover { color: var(--teal-light); }
.footer-links li { margin-bottom: 0.55rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding: 1.5rem 0 0;
  font-size: 0.85rem;
}

.footer-newsletter {
  margin-top: 2.5rem;
  padding: 1.35rem 1.5rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-newsletter strong {
  color: #fff;
  font-family: var(--font-display);
}

.footer-credit {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.75;
}

.footer-credit a {
  color: var(--teal-light);
  font-weight: 600;
  text-decoration: none;
}

.footer-credit a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  margin-right: 0.5rem;
  transition: all 0.2s;
}

.footer .social-link:hover {
  background: var(--teal);
  color: #fff;
}

.motto-quote {
  color: var(--navy);
  font-style: italic;
}

.patent-note {
  background: rgba(201, 162, 39, 0.08);
  border-left: 4px solid var(--gold);
  padding: 1rem 1.2rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.65;
}

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--teal-light);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Blog ── */
.page-hero-sm {
  padding: 3.5rem 0 3rem;
}

.page-hero-sm h1 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.page-hero-sm p {
  max-width: 640px;
  opacity: 0.9;
  margin: 0;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--light);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 1.35rem 1.4rem 1.5rem;
}

.blog-card-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.blog-card-body h2 a {
  color: var(--navy);
  text-decoration: none;
}

.blog-card-body h2 a:hover {
  color: var(--teal);
}

.blog-featured-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.blog-article {
  max-width: 820px;
  font-size: 1.02rem;
  line-height: 1.75;
}

.blog-article p,
.blog-article ul {
  margin-bottom: 1.15rem;
}

.blog-article ul {
  padding-left: 1.25rem;
}

.btn-outline-teal {
  border: 1px solid var(--teal);
  color: var(--teal);
  background: transparent;
}

.btn-outline-teal:hover {
  background: var(--teal);
  color: #fff;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .hero { min-height: 520px; }
  .hero-content { padding: 3.5rem 0; }
  .section { padding: 3.5rem 0; }
}

@media (max-width: 767px) {
  .table-alex { font-size: 0.8rem; }
  .table-alex thead th,
  .table-alex tbody td { padding: 0.65rem 0.75rem; }
  .hero-actions .btn { width: 100%; }
  .hero-actions { margin-bottom: 2rem; }
  .footer-bottom { text-align: center; }
  .footer-bottom span { display: block; }
}
