.hero-section {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.hero-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.hero-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 2560/800;
  overflow: hidden;
}

.hero-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-banner-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.hero-banner-link:focus {
  outline: 2px solid var(--mia-gold);
  outline-offset: -2px;
}

.hero-boxes {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 0 0;
  border-top: none;
}

.hero-box {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.hero-box::before {
  display: block;
  padding-top: 40%;
  content: "";
}

.hero-box-top {
  border-right: none;
}

.hero-box-bottom {
  border-left: none;
}

.hero-box-image {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 2rem;
  text-align: center;
  background: rgb(0 0 0 / 70%);
}

.hero-box-heading {
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--mia-white);
  text-shadow: 0 2px 4px rgb(0 0 0 / 50%);
}

.hero-box-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.hero-box-link .hero-box-image {
  transition: transform 0.4s ease;
}

.hero-box-link .hero-box-overlay {
  transition: background 0.3s ease;
}

.hero-box-link .btn {
  transition: all 0.3s ease;
}

.hero-box-link:hover .hero-box-image,
.hero-box-link:focus .hero-box-image {
  transform: scale(1.05);
}

.hero-box-link:hover .hero-box-overlay,
.hero-box-link:focus .hero-box-overlay {
  background: rgb(0 0 0 / 60%);
}

.hero-box-link:hover .btn,
.hero-box-link:focus .btn {
  color: var(--mia-black);
  background: var(--mia-white);
  border-color: var(--mia-white);
}

.hero-box-link:focus {
  outline: 2px solid var(--mia-gold);
  outline-offset: 2px;
}

.section-description {
  font-size: 1.25rem;
  line-height: 1.625;
}

.about-description {
  font-size: 1.25rem;
  line-height: 1.625;
}

.tagline {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--mia-black);
  text-transform: uppercase;
}

.page-heading {
  font-size: 3.5rem;
  letter-spacing: 0.03em;
}

.section-heading {
  font-size: 3rem;
  letter-spacing: 0.03em;
}

.about-content .tagline {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--mia-black);
  text-transform: uppercase;
}

.excellence-tagline {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--mia-gold);
  text-transform: uppercase;
}

.foundation-tagline {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--mia-black);
  text-transform: uppercase;
}

.homepage-stat-number {
  padding-right: 0.1em;
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 8vw, 3.75rem);
  font-style: italic;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--mia-gold) 0%, #a89554 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 6px rgb(200 178 115 / 15%));
  -webkit-text-fill-color: transparent;
}

.homepage-stat-label {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.375;
  color: var(--mia-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.about-section {
  position: relative;
  padding: 5rem 0;
  margin-top: 0;
  overflow: hidden;
  background-image: radial-gradient(circle at 1px 1px, rgb(200 178 115 / 8%) 1px, transparent 0);
  background-size: 24px 24px;
  isolation: isolate;
}

.about-section::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  font-family: "Font Awesome 7 Free", sans-serif;
  font-size: 20rem;
  font-weight: 900;
  line-height: 1;
  color: var(--mia-black);
  pointer-events: none;
  content: "\f3a5";
  opacity: 0.12;
  transform: translate(-50%, -50%) rotate(-12deg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1200px;
  padding: 0 1rem;
  margin: 0 auto;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 2rem 1.25rem;
  background: linear-gradient(135deg, var(--mia-black) 0%, var(--mia-pure-black) 100%);
  border: 1px solid rgb(200 178 115 / 20%);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.stat-box:hover {
  border-color: rgb(200 178 115 / 40%);
}

/* Stat Box Link - clickable stat cards */
.stat-box-link {
  text-decoration: none;
  cursor: pointer;
}

.stat-box-link:hover,
.stat-box-link:focus {
  background: linear-gradient(135deg, #222 0%, #1a1a1a 100%);
  border-color: var(--mia-gold);
}

.stat-box-link:focus {
  outline: 2px solid var(--mia-gold);
  outline-offset: 2px;
}

.stat-box-link .homepage-stat-label {
  transition: color 0.3s ease;
}

.stat-box-link:hover .homepage-stat-label,
.stat-box-link:focus .homepage-stat-label {
  color: var(--mia-gold);
}

.stat-number {
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.25;
  color: var(--mia-gold);
  white-space: nowrap;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 600;
  line-height: 1.375;
  color: var(--mia-text);
  text-transform: uppercase;
}

/* ==========================================================================
   SURGEONS CAROUSEL SECTION
   ========================================================================== */

.surgeons-section {
  padding: 4rem 0;
  background-color: var(--mia-gold-light);
}

.surgeons-tagline {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mia-black);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.surgeons-tagline::before {
  display: block;
  width: 2.5rem;
  height: 2px;
  margin: 0 auto 0.75rem;
  content: "";
  background-color: var(--mia-gold);
}

.surgeons-carousel-wrapper {
  position: relative;
  padding: 0 3.5rem;
  margin-bottom: 2rem;
}

.surgeons-carousel {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.surgeons-carousel::-webkit-scrollbar {
  display: none;
}

.surgeon-slide {
  flex: 0 0 calc(25% - 0.375rem);
  min-width: 0;
  scroll-snap-align: start;
}

.homepage-surgeon-item {
  padding: 1rem 0.5rem;
  text-align: center;
}

.homepage-surgeon-headshot {
  display: block;
  width: 9rem;
  height: 9rem;
  margin-inline: auto;
  margin-bottom: 0.75rem;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--mia-gold);
  border-radius: var(--radius-full);
}

.homepage-surgeon-info {
  min-height: 4.5rem;
}

.homepage-surgeon-name {
  margin-bottom: 0.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  text-transform: capitalize;
}

.homepage-surgeon-location {
  margin-bottom: 0.125rem;
  font-size: 0.8125rem;
  color: var(--mia-text);
}

.homepage-surgeon-bio-link {
  font-size: 0.8125rem;
  color: var(--mia-gold-dark);
  text-decoration: underline;
  text-decoration-color: var(--mia-gold);
  text-underline-offset: 2px;
}

.homepage-surgeon-name a,
.homepage-surgeon-location a {
  display: inline-block;
  padding-block: 3px;
  text-decoration: underline;
  text-decoration-color: var(--mia-gold);
  text-underline-offset: 2px;
}

.homepage-surgeon-name a {
  color: var(--mia-black);
}

.homepage-surgeon-location a {
  color: var(--mia-gold-dark);
}

.homepage-surgeon-name a:hover,
.homepage-surgeon-location a:hover,
.homepage-surgeon-bio-link:hover {
  color: var(--mia-black);
}

.homepage-surgeon-name a:hover {
  color: var(--mia-gold-dark);
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  top: 4.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1rem;
  color: var(--mia-white);
  cursor: pointer;
  background: rgb(102 102 102 / 70%);
  border: none;
  border-radius: var(--radius-sm);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.carousel-nav:hover {
  background: rgb(102 102 102 / 100%);
  transform: scale(1.05);
}

.carousel-nav:active {
  transform: scale(0.95);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

/* Carousel Counter - hidden by default, shown only on mobile */
.carousel-counter {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  display: none;
  padding: 0.25rem 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--mia-black);
  background: var(--mia-white);
  border: 1px solid var(--mia-gold);
  border-radius: var(--radius-sm);
  transform: translateX(-50%);
}

.carousel-current {
  color: var(--mia-gold-dark);
}

/* Responsive Carousel */
@media (width >= 1200px) {
  .surgeons-section {
    padding: 5rem 0;
  }

  .surgeons-tagline {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .surgeon-slide {
    flex: 0 0 calc(20% - 0.4rem);
  }

  .homepage-surgeon-headshot {
    width: 10rem;
    height: 10rem;
  }

  .homepage-surgeon-name {
    font-size: 1rem;
  }

  .homepage-surgeon-location,
  .homepage-surgeon-bio-link {
    font-size: 0.875rem;
  }

  .carousel-nav {
    top: 5rem;
  }
}

@media (width <= 1199.98px) {
  .surgeon-slide {
    flex: 0 0 calc(25% - 0.375rem);
  }
}

@media (width <= 991.98px) {
  .surgeons-carousel-wrapper {
    padding: 0 3rem;
  }

  .surgeon-slide {
    flex: 0 0 calc(33.333% - 0.333rem);
  }

  .homepage-surgeon-headshot {
    width: 8rem;
    height: 8rem;
  }

  .carousel-nav {
    top: 4.5rem;
  }
}

@media (width <= 767.98px) {
  .surgeons-section {
    padding: 3rem 0;
  }

  .surgeons-carousel-wrapper {
    padding: 0 2.5rem;
  }

  .surgeon-slide {
    flex: 0 0 calc(50% - 0.25rem);
  }

  .surgeons-carousel {
    gap: 0.5rem;
  }

  .homepage-surgeon-headshot {
    width: 8rem;
    height: 8rem;
  }

  .homepage-surgeon-info {
    min-height: auto;
  }

  .carousel-nav {
    top: 4.5rem;
    width: 36px;
    height: 36px;
    font-size: 0.875rem;
  }
}

@media (width <= 575.98px) {
  .carousel-counter {
    display: block;
  }

  .surgeons-section {
    padding: 2.5rem 0;
  }

  .surgeons-carousel-wrapper {
    padding: 0 2.5rem;
  }

  .surgeons-carousel {
    gap: 0.5rem;
  }

  .surgeon-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .homepage-surgeon-item {
    padding: 1.5rem 1rem;
  }

  .homepage-surgeon-headshot {
    width: 10rem;
    height: 10rem;
    margin-bottom: 1rem;
  }

  .homepage-surgeon-name {
    font-size: 1rem;
  }

  .homepage-surgeon-location,
  .homepage-surgeon-bio-link {
    font-size: 0.875rem;
  }

  .carousel-nav {
    top: 6rem;
    width: 32px;
    height: 32px;
  }
}

.video-background-section {
  position: relative;
  padding: 0;
  margin: 0;
  background-color: var(--mia-black);
}

.video-container {
  min-height: 60vh;
  max-height: 70vh;
  background-color: var(--mia-black);
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  object-fit: cover;
  object-position: center;
}

.video-content-overlay {
  z-index: 2;
  padding: 3rem 0;
  background: linear-gradient(to bottom, rgb(0 0 0 / 40%) 0%, rgb(0 0 0 / 60%) 50%, rgb(0 0 0 / 40%) 100%);
}

.video-heading {
  font-size: 3.5rem;
  letter-spacing: 0.05em;
}

.video-description {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.7;
}

.procedures-section {
  padding: 6rem 0;
}

.procedure-tabs-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.procedure-tabs {
  flex-wrap: nowrap;
  justify-content: center;
  margin: 0 3.75rem;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: none;
  -ms-overflow-style: none;
}

.procedure-tabs::-webkit-scrollbar {
  display: none;
}

.procedure-tabs .nav-link {
  flex: 0 0 auto;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--mia-black);
  text-align: center;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.procedure-tabs .nav-link:hover {
  background-color: var(--mia-gold-50);
  border-color: transparent;
}

.procedure-tabs .nav-link.active {
  color: var(--mia-black);
  background-color: var(--mia-gold);
  border-color: var(--mia-gold);
}

.procedure-nav-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--mia-gold);
  background: var(--mia-white);
  border: 1px solid var(--mia-gold);
  border-radius: var(--radius-full);
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 10%),
    0 2px 4px -1px rgb(0 0 0 / 6%);
  transform: translateY(-50%);
  transition: all 0.2s ease;
}

.procedure-nav-arrow:hover {
  color: var(--mia-white);
  background-color: var(--mia-gold);
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 10%),
    0 2px 4px -1px rgb(0 0 0 / 6%);
}

.procedure-nav-arrow:focus {
  outline: 2px solid var(--mia-gold);
  outline-offset: 2px;
}

.procedure-nav-arrow:disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.procedure-nav-arrow i {
  font-size: 1rem;
}

.prev-arrow {
  left: 0;
}

.next-arrow {
  right: 0;
}

#procedureDropdown {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--mia-black);
  border-color: var(--mia-gold);
}

#procedureDropdown:focus {
  border-color: var(--mia-gold);
  box-shadow: 0 0 0 3px var(--mia-gold-50);
}

.procedure-links {
  display: flex;
  flex-direction: column;
}

.procedure-link {
  display: block;
  padding: 0.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--mia-black);
  text-decoration: none;
  transition: all 0.2s ease;
}

.procedure-link i {
  margin-right: 0.5rem;
  color: var(--mia-gold);
}

.procedure-link:hover {
  color: var(--mia-gold);
  text-decoration: none;
}

.tab-content img {
  transition: none;
}

.foundation-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 750px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(0);
}

/* Foundation Background Image */
.foundation-background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.foundation-background img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

/* Left-side gradient overlay for desktop */
.foundation-background::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 80%;
  height: 100%;
  pointer-events: none;
  content: "";
  background: linear-gradient(to right, rgb(0 0 0 / 90%) 0%, rgb(0 0 0 / 85%) 40%, rgb(0 0 0 / 50%) 70%, rgb(0 0 0 / 0%) 100%);
}

.foundation-container {
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 750px;
}

.foundation-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  text-align: left;
  background: transparent;
  border-radius: var(--radius-none);
}

.foundation-content .section-heading {
  text-align: left;
}

.foundation-content .section-description-white {
  max-width: 600px;
  margin-inline: 0;
  text-align: left;
  text-shadow: 2px 2px 4px rgb(0 0 0 / 80%);
}

.foundation-section h2,
.foundation-section .foundation-tagline {
  text-shadow: 2px 2px 4px rgb(0 0 0 / 80%);
}

@media (width >= 992px) {
  .about-section {
    padding: 8rem 0;
  }

  .about-section::before {
    font-size: 25rem;
  }
}

@media (width <= 991px) {
  .hero-box-heading {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  }
}

@media (width >= 1200px) {
  .procedure-tabs .nav-link {
    min-width: 160px;
    padding: 0.75rem 1.5rem;
  }
}

@media (width >= 992px) and (width <= 1199px) {
  .procedure-tabs .nav-link {
    min-width: 140px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
}

@media (width >= 768px) and (width <= 991px) {
  .procedure-tabs {
    margin: 0 3.125rem;
  }

  .procedure-tabs .nav-link {
    min-width: 110px;
    padding: 0.75rem 0.625rem;
    font-size: 0.875rem;
  }
}

@media (width >= 768px) and (width <= 991.98px) {
  .foundation-section {
    min-height: 550px;
  }

  .foundation-section .foundation-tagline {
    color: var(--mia-white);
  }

  .foundation-section h2 {
    color: var(--mia-white);
  }

  .foundation-content {
    padding: 3rem 2rem;
    text-align: center;
  }

  .foundation-content .section-heading,
  .foundation-content .section-description-white {
    margin-inline: auto;
    color: var(--mia-white);
    text-align: center;
  }

  .foundation-background img {
    position: fixed;
  }

  .foundation-background::after {
    width: 100%;
    background: rgb(0 0 0 / 55%);
  }

  .foundation-container {
    min-height: 550px;
  }
}

@media (width >= 992px) {
  .foundation-section {
    min-height: 750px;
  }

  .foundation-section .foundation-tagline {
    color: var(--mia-white);
  }

  .foundation-section h2 {
    color: var(--mia-white);
  }

  .foundation-content .section-description-white {
    color: var(--mia-white);
  }

  .foundation-background::after {
    width: 80%;
  }
}

@media (width <= 1199.98px) {
  .procedures-section .row.align-items-center {
    flex-direction: column;
  }

  .procedures-section .row.align-items-center .col-lg-6 {
    width: 100%;
  }

  .procedures-section .row.align-items-center .col-lg-6.order-lg-2 {
    order: -1;
    margin-bottom: 2rem;
  }

  .procedures-section img {
    width: 100%;
    height: auto;
  }
}

@media (width <= 991.98px) {
  .video-background-section {
    margin: 0;
  }
}

@media (width <= 991px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
    max-width: 700px;
  }

  .stat-box {
    min-height: 170px;
    padding: 1.75rem 1rem;
  }

  .procedures-section {
    padding: 4rem 0;
  }

  .foundation-content {
    padding: 3rem 2rem 2.5rem;
    background: transparent;
  }

  .about-section,
  .stats-section {
    padding: 4rem 0;
  }

  .about-content p {
    margin-bottom: 1.5rem;
  }
}

@media (width <= 767.98px) {
  .video-background-section {
    height: auto;
    padding: 0;
    margin: 0;
  }

  .video-container {
    width: 100%;
    height: auto;
    min-height: auto;
    max-height: none;
    aspect-ratio: 16/9;
  }
}

@media (width <= 767px) {
  .hero-section {
    padding: 0;
  }

  .hero-boxes {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0 0;
  }

  .hero-carousel {
    aspect-ratio: 4/3;
  }

  .hero-carousel img {
    object-position: top center;
  }

  .hero-box::before {
    padding-top: 37.5%;
  }

  .hero-box-overlay {
    padding: 1.5rem 1rem;
  }

  .hero-box-heading {
    margin-bottom: 0.75rem;
    font-size: clamp(1rem, 3.5vw, 1.5rem);
  }

  .page-heading {
    font-size: 1.875rem;
  }

  .section-heading {
    font-size: 1.75rem;
  }

  .video-heading {
    font-size: 1.75rem;
  }

  .stats-grid {
    gap: 0.5rem;
  }

  .stat-box {
    min-height: 150px;
    padding: 1.25rem 0.75rem;
    border-radius: var(--radius-sm);
  }

  .procedures-section {
    padding: 3rem 0;
  }

  .foundation-section {
    position: relative;
    display: block;
    height: auto;
    min-height: auto;
  }

  .foundation-background {
    position: relative;
    height: auto;
  }

  .foundation-background img {
    position: relative;
    top: auto;
    left: auto;
  }

  .foundation-background::after {
    display: none;
  }

  .foundation-container {
    display: block;
    min-height: auto;
  }

  .foundation-section .container {
    position: relative;
    z-index: auto;
    height: auto;
    min-height: auto;
    padding: 0;
  }

  .foundation-section h2 {
    text-shadow: none;
  }

  .foundation-section .foundation-tagline {
    text-shadow: none;
  }

  .foundation-content {
    padding: 2rem 1.25rem 2.25rem;
    margin: 0;
    text-align: center;
    background: transparent;
  }

  .foundation-content .section-heading,
  .foundation-content .section-description-white {
    margin-inline: auto;
    text-align: center;
  }

  .foundation-content .section-description-white {
    text-shadow: none;
  }

  .stats-content {
    margin-bottom: 1.5rem;
    text-align: left;
  }

  .stats-content .d-flex {
    justify-content: flex-start;
  }
}

@media (width <= 480px) {
  .page-heading {
    font-size: 1.5rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .video-heading {
    font-size: 1.5rem;
  }

  .about-content .tagline,
  .excellence-tagline,
  .foundation-tagline {
    font-size: 0.75rem;
  }

  .stats-grid {
    gap: 0.375rem;
    padding: 0 0.5rem;
  }

  .stat-box {
    min-height: 130px;
    padding: 1rem 0.625rem;
    border-radius: var(--radius-sm);
  }

  .homepage-stat-label {
    font-size: 0.75rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .about-section,
  .stats-section {
    padding: 2.5rem 0;
  }

  .foundation-section {
    min-height: auto;
  }

  .foundation-section .container {
    min-height: auto;
  }

  .foundation-section h2 {
    font-size: 1.5rem;
    text-shadow: none;
  }

  .foundation-section .foundation-tagline {
    text-shadow: none;
  }

  .foundation-content {
    padding: 1.75rem 1rem 2rem;
    margin: 0;
    background: transparent;
  }

  .foundation-content .section-description-white {
    font-size: 1rem;
    text-shadow: none;
  }
}

/* ==========================================================================
   REDUCED MOTION PREFERENCES
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .hero-box-link .hero-box-image,
  .hero-box-link .hero-box-overlay,
  .hero-box-link .btn,
  .stat-box,
  .stat-box-link,
  .stat-box-link .homepage-stat-label,
  .procedure-tabs .nav-link,
  .procedure-nav-arrow,
  .procedure-link {
    transition: none;
  }

  .hero-box-link:hover .hero-box-image,
  .hero-box-link:focus .hero-box-image {
    transform: none;
  }

  .stat-box:hover,
  .stat-box-link:hover,
  .stat-box-link:focus {
    transform: none;
  }
}
