@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700;800;900&display=swap");
@font-face {
  font-family: 'Mistral';
  src: url('/fonts/Mistral.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --enpho-blue: #00ADEF;
  --enpho-blue-dark: #008bc0;
  --enpho-blue-soft: #e7f8ff;
  --accent-green: #32bd78;
  --accent-green-dark: #229d5e;
  --ink: #1f2933;
  --muted: #667085;
  --paper: #f7fafc;
  --impact: #eef8fc;
  --shadow-soft: 0 20px 55px rgba(16, 39, 55, 0.12);
  --shadow-hover: 0 26px 70px rgba(0, 173, 239, 0.22);
  --display-font: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --body-font: "Inter", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--body-font);
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
.brand-title,
.service-logo {
  font-family: var(--display-font);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.navbar {
  padding: 1.35rem 0 !important;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.02));
  border-bottom: 0;
  backdrop-filter: none;
  transition: background 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 16px 45px rgba(14, 35, 48, 0.14);
}

.site-header.is-scrolled .navbar {
  background: rgba(0, 173, 239, 0.94);
  padding: 0.85rem 0 !important;
  box-shadow: 0 18px 40px rgba(0, 60, 90, 0.2);
}

.brand-logo {
  width: 150px;
  height: 66px;
  object-fit: cover;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
  mix-blend-mode: normal;
}

.brand-title {
  display: none;
  color: #fff;
  font-size: clamp(1.35rem, 2.35vw, 2.85rem);
  font-weight: 600;
  line-height: 0.95;
  text-transform: uppercase;
  white-space: normal;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.navbar-dark .navbar-nav .nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--display-font);
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.navbar-dark .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  right: 0.5rem;
  bottom: 0.25rem;
  left: 0.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--enpho-blue), var(--accent-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar .dropdown-menu {
  min-width: 230px;
  padding: 0.55rem;
  border: 1px solid rgba(0, 173, 239, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.navbar .dropdown-item {
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus,
.navbar .dropdown-item.active {
  color: #fff;
  background: var(--enpho-blue);
  transform: translateX(3px);
}

.navbar .dropdown-toggle::after {
  margin-left: 0.45rem;
  vertical-align: 0.12em;
}

.navbar .dropdown-submenu {
  position: relative;
}

.navbar .dropdown-submenu > .dropdown-menu {
  top: 0;
  left: calc(100% + 0.45rem);
  margin-top: -0.55rem;
}

.navbar .dropdown-submenu > .dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 992px) {
  .site-header .navbar .container {
    flex-wrap: nowrap;
    align-items: center;
  }

  .site-header .navbar-brand {
    width: auto;
    margin-right: 0;
    justify-content: flex-start;
  }

  .site-header .navbar-collapse {
    flex-basis: auto;
    flex-grow: 1;
  }

  .site-header .navbar-nav {
    width: 100%;
    justify-content: flex-end;
    gap: clamp(1.15rem, 2.4vw, 3.2rem) !important;
  }

  .navbar .dropdown:hover > .dropdown-menu,
  .navbar .dropdown:focus-within > .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .navbar .dropdown-submenu:hover > .dropdown-menu,
  .navbar .dropdown-submenu:focus-within > .dropdown-menu {
    display: block;
  }
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 9rem 0 5rem;
  overflow: hidden;
  background: #081b26;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("hero.jpg") center top / cover no-repeat;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 48%, rgba(0, 173, 239, 0.16), transparent 24rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.48));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin-inline: auto;
  animation: liftIn 0.8s ease 0.18s both;
}

.hero-content::before {
  content: none;
}

.hero-content h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-family: 'Mistral', cursive;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 0.9;
  text-transform: none;
  text-shadow: 0 20px 54px rgba(0, 0, 0, 0.44);
}

.hero-content p {
  max-width: 820px;
  margin: 0.75rem auto 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.08;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.book-services {
  position: absolute;
  right: min(7vw, 7rem);
  bottom: 5.5rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 105px;
  height: 78px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--enpho-blue), var(--accent-green));
  font-family: var(--body-font);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.book-services:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--enpho-blue-dark), var(--accent-green-dark));
  box-shadow: 0 18px 42px rgba(0, 173, 239, 0.35);
  transform: translateY(-4px);
}

.scroll-cue {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
  animation: bounceCue 1.8s ease-in-out infinite;
}

.scroll-cue:hover {
  color: #fff;
  background: var(--enpho-blue);
}

.news-events-section,
.services-section,
.publications-section,
.partners-section {
  background: var(--paper);
}

.news-events-section {
  padding: 3.5rem 0 2.5rem;
}

.content-panel {
  padding: 1.7rem clamp(1rem, 3vw, 2.5rem) 2.6rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 173, 239, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

section h2,
.content-panel h2 {
  position: relative;
  margin: 0 0 2.4rem;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

section h2::after,
.content-panel h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin: 0.8rem auto 0;
  border-radius: 99px;
  background: var(--enpho-blue);
}

.events-panel h2 {
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  padding-bottom: 0.5rem;
  border-bottom: 0;
}

.story-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 505px;
  overflow: hidden;
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 16px 36px rgba(16, 39, 55, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-size 0.25s ease;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 35%, rgba(0, 0, 0, 0.7));
}

.story-card div {
  position: relative;
  z-index: 1;
  padding: 1.4rem;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
}

.story-card span {
  display: block;
  font-size: 0.9rem;
  line-height: 1.1;
}

.story-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.05;
}

.btn-primary {
  --bs-btn-bg: var(--enpho-blue);
  --bs-btn-border-color: var(--enpho-blue);
  --bs-btn-hover-bg: var(--enpho-blue-dark);
  --bs-btn-hover-border-color: var(--enpho-blue-dark);
  --bs-btn-active-bg: var(--enpho-blue-dark);
  --bs-btn-active-border-color: var(--enpho-blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(0, 173, 239, 0.24);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 173, 239, 0.34);
}

.event-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1rem;
  margin-bottom: 1.9rem;
  padding: 0.7rem;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.event-item:hover {
  background: var(--enpho-blue-soft);
  transform: translateX(4px);
}

.event-date {
  display: flex;
  min-height: 128px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--enpho-blue), #4cc6f4);
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(0, 173, 239, 0.28);
}

.event-date span {
  font-size: 0.85rem;
  font-weight: 700;
}

.event-date strong {
  font-size: 2.6rem;
  line-height: 1;
}

.event-item h3 {
  margin: 0 0 0.6rem;
  color: #737373;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.event-item p {
  margin: 0.12rem 0;
  color: #666;
  font-size: 0.78rem;
}

.event-badge {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  color: #fff;
  background: var(--accent-green);
  font-size: 0.72rem;
  font-weight: 700;
}

.impact-section {
  background: #fff;
}

.impact-section > h2 {
  margin: 0;
  padding: 2.2rem 0 1.8rem;
}

.impact-band {
  padding: 2.5rem 0;
  background:
    linear-gradient(135deg, rgba(0, 173, 239, 0.14), rgba(50, 189, 120, 0.1)),
    var(--impact);
}

.impact-count {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: clamp(1rem, 6vw, 5rem);
}

.impact-count h3 {
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.impact-count p {
  margin: 0;
  color: var(--enpho-blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.9;
}

.impact-video {
  border-left: 2px solid rgba(0, 173, 239, 0.34);
  text-align: center;
}

.impact-video h3 {
  margin-bottom: 1.2rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
}

.video-thumb {
  position: relative;
  width: min(100%, 468px);
  margin-inline: auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.video-thumb:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.video-thumb img,
.publication-img,
.partners-img {
  display: block;
  width: 100%;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 62px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: #ff0000;
  font-size: 2rem;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.video-thumb:hover .play-button {
  transform: translate(-50%, -50%) scale(1.08);
}

.services-section {
  padding: 3.6rem 0 4.6rem;
  border-bottom: 7px solid #fff;
}

.service-card {
  display: flex;
  min-height: 585px;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.4rem 1.25rem;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(145deg, var(--enpho-blue), var(--enpho-blue-dark));
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 173, 239, 0.24);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.service-logo {
  display: grid;
  width: 90px;
  height: 90px;
  margin-bottom: 3.1rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  line-height: 1;
}

.service-card h3 {
  margin-bottom: 1.7rem;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.05;
}

.service-card p {
  margin: 0;
  max-width: 220px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.08;
}

.publications-section {
  padding: 4rem 0 3.5rem;
}

.publication-img {
  height: 460px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.publication-img:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-hover);
}

.partners-section {
  padding: 3rem 0 4.5rem;
}

.partners-img {
  max-width: 1200px;
  margin: 0 auto;
  object-fit: contain;
  padding: 1.5rem;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.site-footer {
  padding: 2.6rem 0 0.75rem;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(50, 189, 120, 0.26), transparent 38%),
    linear-gradient(160deg, var(--enpho-blue), var(--enpho-blue-dark));
  font-family: Georgia, "Times New Roman", serif;
}

.footer-logo {
  width: 125px;
  height: 54px;
  object-fit: cover;
  mix-blend-mode: screen;
  margin-bottom: 1rem;
}

.site-footer p,
.site-footer a {
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.25;
}

.site-footer h3 {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.site-footer a {
  display: block;
  margin-bottom: 0.65rem;
}

.qr-box {
  width: 55px;
  height: 55px;
  margin: 0.75rem 0;
  background:
    linear-gradient(90deg, #111 50%, transparent 50%) 0 0 / 10px 10px,
    linear-gradient(#111 50%, transparent 50%) 0 0 / 10px 10px,
    #fff;
  border: 4px solid #fff;
}

.footer-link {
  margin-left: 4rem;
}

.footer-form {
  display: grid;
  gap: 0.45rem;
}

.footer-form .form-control {
  height: 36px;
  border: 0;
  border-radius: 999px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-form .btn {
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: var(--enpho-blue-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.socials a {
  margin: 0;
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.socials a:hover {
  color: #fff;
  transform: translateY(-3px);
}

.copyright {
  margin-top: 2rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06) translateY(-10px);
  }
}

@keyframes liftIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceCue {
  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 8px);
  }
}

@media (max-width: 1199.98px) {
  .brand-title {
    max-width: 620px;
  }

  .story-card {
    min-height: 420px;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    align-items: center;
    padding-top: 9rem;
  }

  .navbar-collapse {
    margin-top: 0.8rem;
    padding: 1rem;
    background: rgba(0, 173, 239, 0.94);
    border-radius: 8px;
  }

  .navbar .dropdown-menu {
    margin: 0.25rem 0 0.7rem;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
  }

  .navbar .dropdown-submenu > .dropdown-menu {
    display: block;
    position: static;
    margin: 0.25rem 0 0.35rem 1rem;
    padding-left: 0.45rem;
    border-left: 2px solid rgba(255, 255, 255, 0.28);
  }

  .navbar .dropdown-item {
    color: #fff;
  }

  .navbar .dropdown-item:hover,
  .navbar .dropdown-item:focus,
  .navbar .dropdown-item.active {
    color: var(--enpho-blue-dark);
    background: #fff;
  }

  .book-services {
    right: 2rem;
    bottom: 2rem;
  }

  .impact-video {
    border-left: 0;
    border-top: 2px solid rgba(0, 173, 239, 0.34);
    padding-top: 2rem;
  }

  .impact-count {
    align-items: center;
    padding-left: 0;
    text-align: center;
  }

  .publication-img {
    height: 390px;
  }
}

@media (max-width: 767.98px) {
  .brand-logo {
    width: 86px;
    height: 38px;
  }

  .brand-title {
    max-width: 210px;
    font-size: 0.9rem;
    line-height: 1;
  }

  .hero-section {
    min-height: 100svh;
    padding-inline: 0.5rem;
  }

  .hero-content p {
    line-height: 1.2;
  }

  .book-services {
    width: 88px;
    height: 66px;
    font-size: 0.78rem;
  }

  .content-panel {
    padding-inline: 1rem;
  }

  .story-card {
    min-height: 360px;
    border-radius: 8px;
  }

  .event-item {
    grid-template-columns: 78px 1fr;
  }

  .event-date {
    min-height: 100px;
  }

  .event-date strong {
    font-size: 2rem;
  }

  .service-card {
    min-height: 420px;
  }

  .service-logo {
    margin-bottom: 2rem;
  }

  .publication-img {
    height: 310px;
  }
}

@media (max-width: 480px) {
  .navbar-brand {
    max-width: 250px;
  }

  .hero-content h1 {
    font-size: 2.65rem;
  }

  .book-services {
    left: 50%;
    right: auto;
    bottom: 1.5rem;
    transform: translateX(-50%);
  }

  .book-services:hover {
    transform: translateX(-50%) translateY(-4px);
  }

  .event-item {
    grid-template-columns: 1fr;
  }

  .event-date {
    width: 86px;
    min-height: 82px;
  }

  .publication-img {
    height: 250px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.inner-hero {
  position: relative;
  min-height: 560px;
  padding: 9rem 0 5rem;
  overflow: hidden;
  background: #081b26;
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("hero.jpg") center 24% / cover no-repeat;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 42%, rgba(0, 173, 239, 0.14), transparent 24rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.52));
}

.inner-hero .container {
  position: relative;
  z-index: 1;
}

.inner-hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 7.4vw, 7.2rem);
  font-weight: 600;
  line-height: 0.9;
  text-transform: none;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  animation: liftIn 0.8s ease both;
}

.announcement-page {
  padding: 4rem 0 5rem;
  background:
    linear-gradient(180deg, #fff 0, #fff 62%, var(--paper) 100%);
}

.announcement-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.announcement-toolbar h2 {
  margin-bottom: 0;
  text-align: left;
}

.announcement-toolbar h2::after {
  margin-left: 0;
}

.eyebrow {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.announcement-search {
  position: relative;
  width: min(100%, 360px);
}

.announcement-search i {
  position: absolute;
  top: 50%;
  left: 1rem;
  color: var(--enpho-blue);
  transform: translateY(-50%);
}

.announcement-search .form-control {
  height: 46px;
  padding-left: 2.75rem;
  border: 1px solid rgba(0, 173, 239, 0.26);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(16, 39, 55, 0.08);
}

.announcement-search .form-control:focus {
  border-color: var(--enpho-blue);
  box-shadow: 0 0 0 0.25rem rgba(0, 173, 239, 0.16);
}

.announcement-tabs {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 2.6rem;
  padding: 0.6rem;
  border: 1px solid rgba(0, 173, 239, 0.12);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.announcement-tabs button {
  min-height: 42px;
  flex: 1 1 auto;
  border: 0;
  border-radius: 999px;
  color: #a1a1aa;
  background: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.announcement-tabs button:hover,
.announcement-tabs button.active {
  color: #fff;
  background: var(--enpho-blue);
  box-shadow: 0 12px 28px rgba(0, 173, 239, 0.24);
}

.announcement-list {
  display: grid;
  gap: 2.35rem;
}

.announcement-card {
  display: grid;
  grid-template-columns: minmax(280px, 510px) 1fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.2rem);
  padding: 0.9rem;
  border: 1px solid rgba(0, 173, 239, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 44px rgba(16, 39, 55, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.announcement-card:hover {
  border-color: rgba(0, 173, 239, 0.32);
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.announcement-card[hidden] {
  display: none;
}

.announcement-media {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 512 / 264;
  background: var(--enpho-blue-soft);
}

.announcement-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.announcement-card:hover .announcement-media img {
  transform: scale(1.05);
}

.announcement-copy {
  padding: 0.8rem 1rem 0.8rem 0;
}

.announcement-copy span {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: #b8b8b8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.announcement-copy h3 {
  max-width: 760px;
  margin-bottom: 1rem;
  color: #202020;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.02;
}

.announcement-copy p {
  max-width: 820px;
  margin-bottom: 1.4rem;
  color: #3f3f46;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.12;
}

.announcement-copy .btn {
  border-radius: 0;
  padding: 0.75rem 1.45rem;
}

.announcement-empty {
  margin: 3rem auto;
  padding: 2.5rem 1rem;
  border: 1px dashed rgba(0, 173, 239, 0.45);
  border-radius: 8px;
  color: var(--enpho-blue-dark);
  background: var(--enpho-blue-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-align: center;
  text-transform: uppercase;
}

.announcement-pagination {
  margin: 6rem 0 4.8rem;
}

.announcement-pagination .page-link {
  color: var(--enpho-blue-dark);
  border-color: #d9e7ef;
  font-weight: 700;
}

.announcement-pagination .active .page-link {
  color: #fff;
  background: var(--enpho-blue);
  border-color: var(--enpho-blue);
}

.announcement-note {
  max-width: 1080px;
  margin: 0 auto;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .inner-hero {
    min-height: 460px;
  }

  .announcement-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .announcement-search {
    width: 100%;
  }

  .announcement-tabs {
    align-items: stretch;
    flex-direction: column;
    border-radius: 8px;
  }

  .announcement-card {
    grid-template-columns: 1fr;
  }

  .announcement-copy {
    padding: 0.4rem;
  }
}

@media (max-width: 575.98px) {
  .inner-hero {
    min-height: 380px;
  }

  .announcement-page {
    padding-top: 3rem;
  }

  .announcement-tabs button {
    font-size: 0.82rem;
  }

  .announcement-card {
    padding: 0.65rem;
  }

  .announcement-copy h3 {
    font-size: 1.55rem;
  }

  .announcement-pagination {
    margin: 3.5rem 0;
  }
}

.research-page {
  padding: 2rem 0 5rem;
  background:
    linear-gradient(180deg, #fff 0, #fff 74%, var(--paper) 100%);
}

.research-featured {
  padding: 0 0 4rem;
}

.research-featured h2 {
  margin-bottom: 2rem;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.featured-publication {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 2rem;
  height: 100%;
  padding: 1.1rem;
  border: 1px solid rgba(0, 173, 239, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.featured-publication:hover {
  border-color: rgba(0, 173, 239, 0.32);
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.featured-publication img {
  width: 100%;
  height: 265px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(16, 39, 55, 0.12);
}

.featured-publication span,
.publication-row-copy span {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: #8b949e;
  font-weight: 700;
  text-transform: uppercase;
}

.featured-publication h3 {
  margin-bottom: 0.8rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.12;
}

.featured-publication p {
  margin-bottom: 0.4rem;
  color: #344054;
  font-size: 1rem;
  line-height: 1.45;
}

.featured-publication a {
  color: var(--enpho-blue);
  font-weight: 800;
}

.publication-filter {
  max-width: 1220px;
  margin: 0 auto 6rem;
  padding: 0 0.5rem;
}

.publication-search {
  display: grid;
  grid-template-columns: 1fr 70px;
  gap: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.publication-search .form-control {
  height: 48px;
  border: 0;
  border-bottom: 2px solid rgba(0, 173, 239, 0.46);
  border-radius: 0;
  color: var(--enpho-blue);
  font-size: 1.35rem;
  text-align: center;
}

.publication-search .form-control::placeholder {
  color: var(--enpho-blue);
  opacity: 0.9;
}

.publication-search .form-control:focus {
  border-color: var(--enpho-blue);
  box-shadow: none;
}

.publication-search .btn,
.publication-actions .btn {
  border-radius: 0;
  font-weight: 800;
  text-transform: uppercase;
}

.publication-filter .form-select {
  border-color: #d8dde3;
  border-radius: 0;
  color: #7a7f86;
}

.publication-filter .form-select:focus {
  border-color: var(--enpho-blue);
  box-shadow: 0 0 0 0.2rem rgba(0, 173, 239, 0.13);
}

.publication-results {
  display: grid;
  gap: 2.8rem;
  max-width: 980px;
  margin: 0 auto;
}

.publication-row {
  display: grid;
  grid-template-columns: minmax(230px, 320px) 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.publication-row:hover {
  border-color: rgba(0, 173, 239, 0.26);
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.publication-row[hidden] {
  display: none;
}

.publication-row > img {
  width: 100%;
  aspect-ratio: 318 / 442;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 18px 36px rgba(16, 39, 55, 0.16);
}

.publication-row-copy h3 {
  max-width: 760px;
  margin-bottom: 0.45rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
}

.publication-row-copy strong {
  display: block;
  margin-bottom: 1rem;
  color: #1f2933;
}

.publication-row-copy p {
  color: #344054;
  font-size: 0.98rem;
  line-height: 1.5;
}

.publication-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1rem;
}

.publication-actions .btn {
  min-width: 150px;
  padding: 0.75rem 1.2rem;
}

.publication-empty {
  max-width: 780px;
  margin: 3rem auto;
  padding: 2.5rem 1rem;
  border: 1px dashed rgba(0, 173, 239, 0.45);
  border-radius: 8px;
  color: var(--enpho-blue-dark);
  background: var(--enpho-blue-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .research-featured {
    padding-bottom: 3rem;
  }

  .featured-publication,
  .publication-row {
    grid-template-columns: 1fr;
  }

  .featured-publication img {
    height: auto;
    max-height: 360px;
    object-fit: contain;
    background: var(--paper);
  }

  .publication-filter {
    margin-bottom: 3rem;
  }

  .publication-row > img {
    max-width: 330px;
    margin-inline: auto;
  }
}

@media (max-width: 575.98px) {
  .publication-search {
    grid-template-columns: 1fr;
  }

  .publication-search .form-control {
    font-size: 1rem;
  }

  .publication-actions .btn {
    width: 100%;
  }
}

.team-page {
  padding: 5.5rem 0 6rem;
  background:
    linear-gradient(180deg, #fff 0, #fff 62%, var(--paper) 100%);
}

.team-heading {
  margin-bottom: 4rem;
}

.team-heading h2 {
  margin-bottom: 0;
  text-align: left;
}

.team-heading h2::after {
  margin-left: 0;
}

.team-sidebar {
  position: sticky;
  top: 130px;
  display: grid;
  gap: 0.95rem;
  padding: 1.2rem;
  border: 1px solid rgba(0, 173, 239, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.team-sidebar button {
  position: relative;
  min-height: 50px;
  padding: 0.7rem 1rem 0.7rem 2rem;
  border: 0;
  border-radius: 8px;
  color: #111;
  background: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.1;
  text-align: left;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.team-sidebar button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.8rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
}

.team-sidebar button:hover,
.team-sidebar button.active {
  color: #fff;
  background: var(--enpho-blue);
  transform: translateX(4px);
}

.team-search {
  position: relative;
  max-width: 430px;
  margin: 0 0 1.25rem auto;
}

.team-search i {
  position: absolute;
  top: 50%;
  left: 1rem;
  color: var(--enpho-blue);
  transform: translateY(-50%);
}

.team-search .form-control {
  height: 46px;
  padding-left: 2.75rem;
  border: 1px solid rgba(0, 173, 239, 0.26);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(16, 39, 55, 0.08);
}

.team-search .form-control:focus {
  border-color: var(--enpho-blue);
  box-shadow: 0 0 0 0.25rem rgba(0, 173, 239, 0.16);
}

.team-accordion {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.team-accordion .accordion-item {
  border-color: #e2e8f0;
}

.team-accordion .accordion-button {
  gap: 0.65rem;
  color: #3f3f46;
  background: #f1f5f9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.team-accordion .accordion-button::before {
  content: "-";
  color: var(--enpho-blue);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
}

.team-accordion .accordion-button.collapsed::before {
  content: "+";
}

.team-accordion .accordion-button:not(.collapsed) {
  color: var(--ink);
  background: var(--enpho-blue-soft);
  box-shadow: inset 0 -1px 0 rgba(0, 173, 239, 0.14);
}

.team-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 173, 239, 0.16);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 220px));
  justify-content: center;
  gap: 2rem;
  padding: 0.7rem;
}

.team-card {
  overflow: hidden;
  border: 1px solid #dfe5ec;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 15px 34px rgba(16, 39, 55, 0.1);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.team-card:hover {
  border-color: rgba(0, 173, 239, 0.36);
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
}

.team-card[hidden],
.team-group[hidden] {
  display: none;
}

.team-card img {
  width: 100%;
  aspect-ratio: 166 / 200;
  object-fit: cover;
  background: #edf2f7;
}

.team-card-body {
  padding: 0.9rem 0.7rem 1rem;
}

.team-card-body span {
  display: block;
  min-height: 2.3em;
  color: #356dff;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.15;
}

.team-card-body h4 {
  margin: 0.35rem 0 0.65rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.team-card-body a {
  color: #222;
  font-size: 0.72rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.team-placeholder,
.team-empty {
  padding: 2rem 1rem;
  border: 1px dashed rgba(0, 173, 239, 0.38);
  border-radius: 8px;
  color: var(--enpho-blue-dark);
  background: var(--enpho-blue-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  text-align: center;
}

.team-empty {
  margin-top: 1.25rem;
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .team-page {
    padding-top: 4rem;
  }

  .team-heading {
    margin-bottom: 2.5rem;
  }

  .team-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-search {
    max-width: none;
    margin-top: 0;
  }
}

@media (max-width: 575.98px) {
  .team-sidebar {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: minmax(0, 240px);
  }
}

.lab-products-hero::before {
  background: url("lab-products-hero.jpg") center center / cover no-repeat;
}

.lab-products-hero .container {
  display: grid;
  justify-items: center;
  gap: 2.4rem;
}

.lab-hero-cta {
  min-width: min(100%, 430px);
  padding: 0.8rem 2rem;
  border-radius: 999px;
  font-size: clamp(1rem, 2vw, 1.4rem);
}

.lab-products-page {
  padding: 4.2rem 0 3rem;
  background: #fff;
}

.lab-section-heading {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.lab-section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.lab-product-controls {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 1rem;
  align-items: center;
}

.lab-product-search {
  position: relative;
}

.lab-product-search i {
  position: absolute;
  top: 50%;
  left: 1rem;
  color: var(--enpho-blue);
  transform: translateY(-50%);
}

.lab-product-search .form-control {
  height: 46px;
  padding-left: 2.75rem;
  border: 1px solid rgba(0, 173, 239, 0.26);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(16, 39, 55, 0.08);
}

.lab-product-search .form-control:focus {
  border-color: var(--enpho-blue);
  box-shadow: 0 0 0 0.25rem rgba(0, 173, 239, 0.16);
}

.lab-product-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.lab-product-filter button {
  min-height: 42px;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(0, 173, 239, 0.2);
  border-radius: 999px;
  color: var(--enpho-blue-dark);
  background: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.lab-product-filter button:hover,
.lab-product-filter button.active {
  color: #fff;
  background: var(--enpho-blue);
  box-shadow: 0 12px 28px rgba(0, 173, 239, 0.24);
  transform: translateY(-2px);
}

.lab-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.6rem, 4vw, 3rem) clamp(1.5rem, 5vw, 4.5rem);
}

.lab-product-card {
  display: grid;
  grid-template-columns: minmax(150px, 220px) 1fr;
  gap: 1.4rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(0, 173, 239, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 44px rgba(16, 39, 55, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.lab-product-card:hover {
  border-color: rgba(0, 173, 239, 0.3);
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.lab-product-card[hidden] {
  display: none;
}

.lab-product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  background: #ddd;
}

.lab-product-card h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.4rem, 2.6vw, 2.05rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.lab-product-card p {
  margin-bottom: 1rem;
  color: #242424;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.1;
}

.lab-product-card .btn {
  min-width: 145px;
  min-height: 34px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.lab-empty {
  margin: 3rem auto 0;
  padding: 2.25rem 1rem;
  border: 1px dashed rgba(0, 173, 239, 0.45);
  border-radius: 8px;
  color: var(--enpho-blue-dark);
  background: var(--enpho-blue-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  text-align: center;
  text-transform: uppercase;
}

.lab-stats-section {
  padding: 3rem 0 3.4rem;
  background: #fff;
}

.lab-stats-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.5rem;
  background: #f5fbff;
}

.lab-stat-card {
  display: grid;
  min-height: 205px;
  place-items: center;
  padding: 1.5rem;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.lab-stat-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.lab-stat-card span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  color: var(--accent-green);
  background: rgba(50, 189, 120, 0.12);
  font-size: 1.3rem;
}

.lab-stat-card:nth-child(2) span {
  color: var(--enpho-blue);
  background: rgba(0, 173, 239, 0.12);
}

.lab-stat-card:nth-child(3) span {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.12);
}

.lab-stat-card strong {
  color: var(--enpho-blue);
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1;
}

.lab-stat-card strong::after {
  content: "+";
}

.lab-stat-card p {
  margin: 0;
  color: #667085;
  font-weight: 700;
}

.lab-tutorial-section {
  padding: 2.8rem 0 3rem;
  background: var(--paper);
}

.lab-video-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 275 / 160;
  background: #111;
  box-shadow: 0 18px 36px rgba(16, 39, 55, 0.16);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.lab-video-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.lab-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.lab-video-card:hover img {
  transform: scale(1.06);
}

.lab-video-card span {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 52px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: #ff0000;
  font-size: 1.7rem;
  transform: translate(-50%, -50%);
}

.lab-testimonial-section {
  padding: 3.5rem 0;
  background: #eef4f8;
}

.lab-testimonial-carousel {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 3rem;
}

.lab-testimonial-card {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
  min-height: 280px;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(0, 173, 239, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.lab-testimonial-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.lab-testimonial-card blockquote {
  margin: 0;
  color: #2f343c;
  text-align: center;
}

.lab-testimonial-card p {
  margin-bottom: 1.4rem;
  font-weight: 700;
  line-height: 1.55;
}

.lab-testimonial-card cite {
  display: block;
  color: #111827;
  font-style: normal;
  font-weight: 800;
}

.lab-testimonial-card cite span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.88rem;
}

.lab-testimonial-carousel .carousel-control-prev,
.lab-testimonial-carousel .carousel-control-next {
  width: 3rem;
}

.lab-testimonial-carousel .carousel-control-prev-icon,
.lab-testimonial-carousel .carousel-control-next-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: rgba(0, 173, 239, 0.8);
  background-size: 55%;
}

.lab-contact-section {
  padding: 3.5rem 0 5rem;
  background: #fff;
}

.lab-contact-card {
  max-width: 850px;
  margin: 0 auto;
  padding: clamp(1.8rem, 4vw, 3rem);
  border-radius: 8px;
  color: #3385cc;
  background: #dcdcdc;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.lab-contact-card p {
  max-width: 650px;
  margin: 0 auto 1.5rem;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 800;
  line-height: 1.25;
}

.lab-contact-card img {
  width: 160px;
  height: 68px;
  object-fit: cover;
  mix-blend-mode: multiply;
  margin-bottom: 1rem;
}

.lab-contact-card h2 {
  margin-bottom: 0.35rem;
  color: #1787d5;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  text-transform: none;
}

.lab-contact-card h2::after {
  display: none;
}

.lab-contact-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #3385cc;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.25;
}

@media (max-width: 1199.98px) {
  .lab-product-card {
    grid-template-columns: 170px 1fr;
  }
}

@media (max-width: 991.98px) {
  .lab-product-controls {
    grid-template-columns: 1fr;
  }

  .lab-product-filter {
    justify-content: flex-start;
  }

  .lab-product-grid {
    grid-template-columns: 1fr;
  }

  .lab-stats-panel {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .lab-testimonial-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lab-testimonial-card img {
    width: min(230px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 575.98px) {
  .lab-hero-cta {
    min-width: 0;
    width: 100%;
  }

  .lab-product-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lab-product-card img {
    width: min(230px, 100%);
    margin: 0 auto;
  }

  .lab-product-filter button {
    flex: 1 1 100%;
  }

  .lab-testimonial-carousel {
    padding: 0 1rem;
  }
}
