/* Main Styles */
:root {
  --primary-color: hsl(80, 69%, 66%);
  --backdrop-color: hsl(80, 69%, 97%);
  --background-color: hsl(80, 69%, 90%);
  --background-black-color: hsl(80, 10%, 15%);
  --background-black-opaque: hsla(75, 11%, 15%, 0.6);
  --text-color: #000;
  --text-color-dark-bg: hsl(80, 10%, 95%);
}

::selection {
  background: var(--primary-color);
  color: var(--text-color);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, Sans;
  margin: auto;
  background-color: hsla(80, 69%, 97%);
}

/* Text Style */
h1,
h2,
h3 {
  text-align: center;
}

p {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

img {
  display: block;
  margin: 0 auto;
}

figcaption {
  text-align: center;
  font-style: italic;
}

button {
  display: block;
  margin: 20px auto;
}

a {
  text-decoration: none;
  color: var(--text-color);
}

/* Section headings */
h2 {
  color: #000000;
  font-size: 2.2rem;
  margin-bottom: 1.8rem;
  position: relative;
  font-weight: 700;
}

.fa-solid.fa-arrow-right {
  margin-left: 0.5rem;
}

.email-copy-link.light-bg {
  color: hsla(80, 69%, 45%);
}

.section-header {
  text-align: center; /* Controls alignment for all children */
}

.topper,
.section-header h2 {
  /* Inherits parent's text-align */
  display: block; /* Ensures full-width alignment */
  width: 100%;
}

.topper {
  display: inline-block;
  font-family: "Inter", sanserif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2em;
  text-transform: uppercase;
  color: hsla(80, 69%, 45%); /* Your green color */
  text-align: inherit;
}

@media (max-width: 768px) {
  .topper {
    text-align: inherit;
  }
}

/* Menu Styles */
.menu {
  background-color: hsla(80, 69%, 97%);
  color: #000000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}

/* Top Bar Styles */
.top-bar {
  background-color: hsla(80, 69%, 66%);
  color: #000000;
  padding: 4px;
  font-size: 0.9em;
  z-index: 1000;
}

.top-bar-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-bar a:hover {
  text-decoration: underline;
}

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  transition: top 0.3s;
}

/* Logo Styles */
.logo {
  flex: 0 0 auto;
}

/* Logo in Navbar */
.navbar-logo {
  height: 40px;
  width: auto;
  max-width: 250px;
  transition: all 0.3s ease;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .navbar-logo {
    height: 32px;
    max-width: 240px;
  }
}

/* If logo is in top bar */
.top-bar .logo img {
  height: 30px;
  max-width: 120px;
}

/* Hamburger Menu (Mobile Only) */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  padding-right: 20px;
  z-index: 1000;
}

/* Menu Bar Styles */
.menubar {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.menubar li {
  position: relative;
}

.menubar a {
  color: black;
  text-decoration: none;
  padding: 12px 10px;
  display: block;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 8px;
  -webkit-tap-highlight-color: transparent;
}

/* Hover and Focus Effect for Menu Options */
.menubar > li > a:hover {
  background-color: hsla(80, 69%, 80%);
  color: #000000;
  border-radius: 8px;
}

/* Focus Effect for Menu Options */
.menubar > li > a:focus {
  background-color: hsla(80, 69%, 97%);
  outline: 2px solid hsla(80, 69%, 66%);
  outline-offset: 2px;
  border-radius: 8px;
}

.contact-button {
  background-color: var(--primary-color);
  font-weight: bold;
}

@media (max-width: 768px) {
  .contact-button {
    display: block;
    margin: 10px 10px;
    border-radius: 2px;
    background-color: var(--primary-color);
    font-weight: bold;
    text-align: center;
    justify-content: center;
  }

  .contact-button-wrapper {
    margin: 10px 0;
    text-align: center;
  }
}

/* Dropdown Styles */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  background-color: hsla(80, 69%, 97%);
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 150px;
  max-width: 300px;
  width: max-content;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-bottom: 7px solid hsla(80, 69%, 66%);
  z-index: 1000;
  transform-origin: top center;
  border-radius: 8px;
  transform: scaleY(0);
  opacity: 0;
  transition: transform 200ms ease-in-out, opacity 200ms ease-in-out;
}

/* Show dropdown when active */
.dropdown.active {
  display: block;
  animation: cascade 200ms ease-in-out forwards; /* Opening animation */
}

/* Keyframes for the cascade animation */
@keyframes cascade {
  0% {
    transform: scaleY(0); /* Start fully collapsed */
    opacity: 0; /* Start invisible */
  }
  100% {
    transform: scaleY(1); /* End at normal size */
    opacity: 1; /* Fully visible */
  }
}

.dropdown li a {
  color: black;
  padding: 10px;
  display: block;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-bottom: 1px lightgray solid;
  border-radius: 0px;
  -webkit-tap-highlight-color: transparent;
}

.dropdown:not(.active) {
  animation: cascade 200ms ease-in-out reverse forwards;
}

.dropdown li a:hover {
  text-decoration: none;
  background-color: lightgray;
}

/* Apply to both normal and hover states */
.dropdown li:first-child,
.dropdown li:first-child a:hover {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

/* Transition on the link */
.dropdown li:first-child a {
  transition: all 0.2s ease-out;
}

/* Dropdown Toggle Button Styles */
.dropdown-toggle {
  position: relative;
  color: #000000;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Dropdown chevron */
.dropdown-arrow {
  display: inline-block;
  margin-left: 6px;
}

.dropdown-arrow::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(45deg);
  transition: transform 0.2s;
  vertical-align: middle;
}

[aria-expanded="true"] .dropdown-arrow::after {
  transform: rotate(225deg);
}

.new-tag {
  background-color: #ff4757;
  color: white;
  gap: 4px;
  font-size: 0.6rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 12px;
  margin-left: 6px;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.desktop-only {
  margin-right: 5px;
  display: inline-block;
}

.mobile-only {
  display: none;
}

@media (max-width: 600px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-block;
  }
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--primary-color);
  color: #000;
  padding: 2rem;
  font-family: "Inter", sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem;
  margin: 0 auto;
}

.footer-content section {
  text-align: left;
}

/* Updated Logo & Social Section */
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1.5rem;
}

.footer-description {
  max-width: 500px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #000;
  text-align: center;
  margin-top: -0.5rem;
}

@media (min-width: 1024px) {
  .footer-description {
    margin: 0;
  }
}

.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
}

.social-links a {
  font-size: 1.2em;
  color: #000000;
  transition: color 0.3s ease;
}

.footer-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #000;
  position: relative;
  display: inline-block;
}

.footer-content h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #000;
}

.footer-content p,
.footer-content a {
  color: #000;
  line-height: 1.6;
  font-size: 0.95rem;
  text-align: left;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links li:last-child {
  margin-bottom: 0rem;
}

.footer-links a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  background-color: var(--backdrop-color);
  font-size: 0.85rem;
  padding: 5px;
}

.footer-bottom p {
  margin: 0 auto;
  color: var(--text-color);
  text-align: center;
}

/* Mobile Styles */
@media (max-width: 768px) {
  footer {
    padding: 1rem 1.25rem;
  }

  .footer-logo {
    padding: 1rem;
  }

  .footer-logo img {
    padding: 0rem;
    max-width: 100%;
    height: auto;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-content section {
    width: 100%;
    text-align: left;
  }

  .footer-logo {
    align-items: flex-start;
    text-align: left;
  }

  .footer-bottom {
    font-size: 1rem;
    padding: 1rem 1.25rem;
    line-height: 1.25;
  }

  .footer-bottom p {
    margin: 0;
    text-align: center;
  }

  .footer-description {
    text-align: center !important;
  }
}

/* Desktop Styles */
@media (min-width: 769px) {
  .footer-logo {
    max-width: 250px;
  }
}

/* Hamburger Icon Styles */
#burger-icon {
  width: 30px;
  height: 24px;
  position: relative;
  transform: rotate(0deg);
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

#burger-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: black;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.25s ease-in-out;
}

/* Position the bars */
#burger-icon span:nth-child(1) {
  top: 0px;
}

#burger-icon span:nth-child(2),
#burger-icon span:nth-child(3) {
  top: 9px;
}

#burger-icon span:nth-child(4) {
  top: 18px;
}

/* Transform the bars into an "X" when the menu is open */
#burger-icon.open span:nth-child(1) {
  top: 9px; /* Move to the middle */
  width: 0%; /* Hide the bar */
  left: 50%; /* Center the bar */
}

#burger-icon.open span:nth-child(2) {
  transform: rotate(45deg); /* Rotate to form the top part of the "X" */
}

#burger-icon.open span:nth-child(3) {
  transform: rotate(-45deg); /* Rotate to form the bottom part of the "X" */
}

#burger-icon.open span:nth-child(4) {
  top: 9px; /* Move to the middle */
  width: 0%; /* Hide the bar */
  left: 50%; /* Center the bar */
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 70vh;
  min-height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
  text-align: center;
  color: white;
}

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

.logo-overlay img {
  max-height: 80px;
  width: auto;
}

.hero-text h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary-color);
  color: #000;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.cta-button:active {
  transform: translateY(1px);
}

.button-icon {
  margin-left: 0.75rem;
  transition: transform 0.2s ease;
}

.cta-button:hover .button-icon {
  transform: translateX(3px);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero {
    min-height: 500px;
  }

  .logo-overlay img {
    max-height: 60px;
  }

  .cta-button {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }
}

/* ===== NON-HOME HERO SECTION ===== */
.hero-no-cta {
  position: relative;
  height: 40vh;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(var(--background-black-opaque)),
    url(/assets/images/tmx-group-photo.png);
  background-size: cover;
  background-position: 60% 45%;
  color: white;
  text-align: center;
}

.hero-no-cta .hero-text {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 0 2rem;
}

.hero-no-cta h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-no-cta .hero-subtitle-no-cta {
  font-size: clamp(1rem, 2.25vw, 1.2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.5rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
  font-family: "Inter", sans-serif;
  text-transform: none;
  font-style: normal;
}

.hero-no-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-no-cta {
    height: 35vh;
    min-height: 350px;
  }
}

/* ===== SERVICES/PRODUCTS SECTION ===== */
.services-section {
  background-image: linear-gradient(hsla(80, 69%, 66%, 0.75)),
    url(/assets/images/index/background-training.png);
  background-size: cover;
  background-position: 60% 40%;
  padding: 40px 0;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  color: #555;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Icon style */
.service-icon {
  height: 48px;
  width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 50%;
}

.material-icons.md-36 {
  font-size: 36px;
  color: var(--primary-color);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.service-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-link {
  color: var(--text-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

.service-link:hover {
  color: #000;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .service-icon {
    font-size: 2.5rem;
  }
}

.global-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;

  /* Toast styling */
  min-width: 250px;
  background-color: #333;
  color: white;
  text-align: center;
  border-radius: 5px;
  padding: 16px;

  /* Animation properties */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.global-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Initial hidden position */
.global-toast {
  transform: translateX(-50%) translateY(20px);
}

/* From Uiverse.io by Voxybuns */
button {
  /* Variables */
  --button_radius: 0.75em;
  --button_color: #e8e8e8;
  --button_outline_color: #000000;
  font-size: 17px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: var(--button_radius);
  background: var(--button_outline_color);
}

.button_top {
  display: block;
  box-sizing: border-box;
  border: 2px solid var(--button_outline_color);
  border-radius: var(--button_radius);
  padding: 0.75em 1.5em;
  background: var(--button_color);
  color: var(--button_outline_color);
  transform: translateY(-0.2em);
  transition: transform 0.1s ease;
}

button:hover .button_top {
  transform: translateY(-0.33em);
}

button:active .button_top {
  transform: translateY(0);
}

/* Tablet+ Styles */
@media (min-width: 768px) {
  .button-container {
    padding: 3rem;
  }

  .cta-text {
    font-size: clamp(2rem, 5vw, 3rem);
    max-width: 800px;
  }
}

/* Disable all animations when reduced motion preferred */
@media (prefers-reduced-motion) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* Photo Text Section*/
.photo-text-section.full-width-bg {
  background-color: var(--backdrop-color);
  padding: 40px 0;
  width: 100%;
  position: relative;
}

.content-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.photo-wrapper {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.photo-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.text-wrapper {
  flex: 1;
  padding: 40px 0;
}

.text-wrapper h2 {
  text-align: left;
  margin-bottom: 20px;
  color: #000;
  font-size: 2.2rem;
  position: relative;
}

.text-wrapper p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 30px;
  text-align: left;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .photo-text-section.full-width-bg {
    padding: 40px 0;
  }

  .content-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
  }

  /* Reorder elements for mobile */
  .photo-wrapper {
    order: 1;
    width: 100%;
    margin-bottom: 20px;
  }

  .text-wrapper {
    order: 2;
    padding: 0;
  }

  .text-wrapper h2 {
    text-align: center;
    font-size: 1.8rem;
  }

  .text-wrapper span {
    text-align: center;
  }

  .text-wrapper p {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 20px;
  }
}

/* For Text then Photo section */
.photo-text-section.reverse .content-container {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .photo-text-section.reverse .content-container {
    flex-direction: column;
  }
}

/* Universal List Styling for All Pages */
.photo-text-list {
  margin: 1.25rem 0 1.5rem;
  padding-left: 0;
}

.photo-text-list li {
  position: relative;
  list-style: none;
  padding-left: 1.75rem;
  margin-bottom: 0.8rem;
  line-height: 1.6;
  color: #333;
}

.photo-text-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
}

.photo-text-list li strong {
  color: #000;
  font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .photo-text-list {
    margin: 1rem 0;
  }

  .photo-text-list li {
    padding-left: 1.5rem;
  }

  .photo-text-list li::before {
    width: 8px;
    height: 8px;
  }
}

.training-benefits {
  padding: 60px 20px;
  background: white;
}

.benefits-flow {
  max-width: 1100px;
  margin: 3rem auto;
}

.benefit-header h3 {
  text-align: left;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin: 2.5rem 0;
}

.reverse-flow {
  flex-direction: row-reverse;
}

.benefit-image {
  width: 50%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-image img {
  width: 100%;
  height: auto;
  display: block;
}

.benefit-content {
  width: 50%;
  padding: 0 3rem;
  font-size: 1.1rem;
  align-items: center;
}

.benefit-content h3,
p {
  text-align: center;
}

.benefit-list {
  margin: 1.5rem 0;
}

.benefit-list li {
  margin-bottom: 0.8rem;
  list-style: none;
  text-align: center;
}

.benefit-list li:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  margin-right: 0.8rem;
}

.achievement-showcase {
  text-align: center;
  margin-top: 5rem;
}

.scrolling-gallery {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  background-color: var(--background-black-color);
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.gallery-track {
  display: flex;
  width: max-content;
  padding: 2rem 0;
}

.gallery-track img {
  height: 225px;
  margin: 0 1rem;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}

@media (max-width: 768px) {
  .gallery-track img {
    height: 175px;
    margin: 0 0.5rem;
  }

  .scrolling-gallery {
    padding: 1rem 0;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .benefit-item,
  .reverse-flow {
    flex-direction: column;
  }

  .benefit-image,
  .benefit-content {
    width: 100%;
    padding: 0;
  }

  .benefit-content {
    margin-top: 1.5rem;
  }
}

/* Achievement Stories Grid */
.student-success-addon {
  padding: 40px 0;
  background-color: var(--background-black-color);
}

.success-stories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.achievement-story {
  background: var(--backdrop-color);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--primary-color);
}

.story-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.achievement-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.achievement-examples span {
  background: rgba(188, 228, 108, 0.5);
  padding: 0.5rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .spotlight-grid,
  .success-stories {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .spotlight-card img {
    height: 200px;
  }

  .achievement-examples span {
    white-space: normal;
  }
}

/* Modern FAQ Section */
.faq-section {
  width: 100%;
  padding: 40px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-accordion {
  margin: 3rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-tap-highlight-color: transparent;
}

summary {
  list-style: none;
  padding: 1.5rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

summary::-webkit-details-marker {
  display: none;
}

.faq-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.dropdown-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item[open] .dropdown-icon {
  transform: rotate(180deg);
}

.faq-content {
  padding-bottom: 1.5rem;
  animation: fadeIn 0.3s ease;
}

.faq-content p {
  color: var(--background-black-color);
  line-height: 1.7;
  margin: 0.5rem 0 0;
  text-align: left;
}

.inline-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-button:hover {
  transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .faq-section {
    padding: 40px 15px;
  }

  summary {
    padding: 1.25rem 0;
  }

  .faq-item h3 {
    font-size: 1.1rem;
  }
}

/* Contact Form */
.cta-form-section {
  background-image: linear-gradient(
      rgba(188, 228, 108, 0.75),
      hsla(80, 69%, 66%)
    ),
    url(/assets/images/tmx-group-photo.png);
  background-size: cover;
  background-position: 15% 40%;
  padding: 40px 20px;
  position: relative;
}

.contact-form {
  color: var(--text-color-dark-bg);
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--background-black-color);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-page-form-wrapper {
  padding: 40px;
}

.hidden {
  display: none;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.two-column-inputs {
  display: flex;
  justify-content: space-between;
}

.form-group {
  margin-bottom: 0;
}

.form-group.full-width {
  grid-column: span 2;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--backdrop-color);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: all 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(80, 69%, 66%, 0.2);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* CTA Button */
.cta-submit {
  display: inline-flex;
  align-items: center;
  background: var(--primary-color);
  color: #000;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.cta-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.button-icon {
  margin-left: 8px;
  transition: transform 0.3s;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-submit:hover .button-icon {
  transform: translateX(3px);
}

/* Netlify Form Success Message */
[data-netlify-success] {
  background: #e8f5e9;
  border: 1px solid #2e7d32;
  color: #2e7d32;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
  text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .two-column-inputs {
    flex-direction: column;
  }

  .two-column-inputs input,
  .two-column-inputs select {
    width: 100% !important;
    margin-left: 0 !important;
    margin-bottom: 1rem;
  }
}

.coaching-staff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 30px;
  margin: 50px auto;
  max-width: 1400px;
  padding: 0 20px;
}

/* Coach Card Styling */
.coach-profile {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.coach-photo {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

.coach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.certification-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.coach-details {
  padding: 20px;
}

.coach-details h3 {
  font-size: 1.3rem;
  margin: 0 0 5px;
  color: #222;
}

.coach-specialty {
  color: var(--primary-color);
  font-weight: 600;
  margin: 0 0 15px;
  font-size: 0.9rem;
}

.coach-bullets {
  margin: 0;
  padding: 0;
}

.coach-bullets li {
  position: relative;
  list-style: none;
  margin-bottom: 8px;
  font-size: 0.9rem;
  padding-left: 18px;
  color: #555;
  line-height: 1.5;
}

.coach-bullets li::before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  line-height: 1;
}

.certification-badge {
  position: absolute;
  bottom: 10px;
  left: 0;
  background: var(--primary-color);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 0 4px 4px 0;
}

/* Responsive Behavior */
@media (max-width: 1200px) {
  .coaching-staff-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }
}

@media (max-width: 900px) {
  .coaching-staff-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 600px) {
  .coaching-staff-grid {
    grid-template-columns: minmax(220px, 1fr);
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .navbar {
    position: sticky;
    top: 0;
    z-index: 1001;
  }

  .top-bar {
    background-color: hsla(80, 69%, 66%);
    position: sticky;
    top: 0;
    z-index: 1001;
  }

  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  /* Hamburger menu button */
  .hamburger {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
    z-index: 1000;
  }

  /* Logo adjustments */
  .logo {
    margin-right: auto;
  }

  /* Mobile menu container */
  .menubar {
    display: none;
    flex-direction: column;
    width: 100vw;
    height: calc(100vh - 90px);
    background-color: hsla(80, 69%, 97%);
    padding-top: 21px;
    position: fixed;
    top: 90px;
    left: 0;
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0px;
  }

  .menubar.active {
    display: flex;
  }

  /* Menu items structure */
  .menubar li {
    width: 100%;
  }

  /* Top-level menu items */
  .menubar > li > a {
    display: flex;
    align-items: center;
    min-height: 56px;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.3px;
    position: relative;
    margin-left: 6px;
  }

  .menubar > li > a:hover {
    background-color: var(--backdrop-color);
  }

  .dropdown-arrow {
    margin-left: auto;
    margin-right: 6px;
    width: 24px;
  }

  /* Dropdown container */
  .dropdown {
    position: static;
    display: none;
    list-style: none;
    padding: 0 0 0 36px;
    margin: 0;
    background: none;
    border: none;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .dropdown.active {
    display: block;
  }

  .dropdown,
  .dropdown * {
    transition: none !important;
    animation: none !important;
  }

  /* Plain dropdown items */
  .dropdown li a {
    display: block;
    padding: 8px 8px;
    min-height: 44px;
    font-size: 1rem;
    font-weight: 400;
    border-bottom: none;
  }

  .dropdown li a:hover {
    background-color: var(--backdrop-color);
  }

  /* Section separators (only for top-level items) */
  .menubar > li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  /* Focus states */
  .menubar li > a:focus {
    outline: none;
  }

  .cta-text {
    font-size: 36px;
  }

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

  .content-section h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .content-section p {
    font-size: 1.05rem;
  }

  .content-section img {
    max-width: 100%;
    margin: 25px auto;
  }

  .card-grid {
    display: none;
  }

  .card-swiper {
    display: block;
    max-width: 400px;
    margin: 0 auto;
  }

  .card-item {
    min-height: 450px;
    margin: 0 auto;
  }
}

/* ===== ESSENTIAL ANIMATIONS ===== */
/* Fade-in for smooth page load */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body {
  animation: fadeIn 0.5s ease-out;
}

/* Banner-specific animation */
.banner {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

/* Respect user motion preferences */
@media (prefers-reduced-motion) {
  body,
  .content-section,
  .banner {
    animation: none !important;
  }
}

/* Clinic Overview Section */
.clinic-overview {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* ===== PAGE SUMMARY ===== */
.page-summary {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--background-black-color);
  padding: 2.5rem 0;
  color: var(--backdrop-color);
  text-align: center;
  overflow: hidden;
}

.summary-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.summary-content p {
  font-size: 1.3rem;
  line-height: 1.85;
  font-weight: 500;
  max-width: 1100px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-summary {
    padding: 2.5rem 0;
  }

  .page-summary::before {
    font-size: 5rem;
    right: -10%;
  }

  .summary-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    padding: 0 1rem;
  }

  .summary-cta {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* Clinic Card - Balanced Layout */
.clinic-card {
  display: flex;
  margin-bottom: 60px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  min-height: 320px;
}

/* Image Section - Consistent 45% */
.clinic-card-image {
  flex: 0 0 45%;
  min-height: 320px;
}

.clinic-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content Section - Flexible 55% */
.clinic-card-content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

/* Alternate card direction */
.clinic-card:nth-child(even) {
  flex-direction: row-reverse;
}

/* Title */
.clinic-title {
  color: #000;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: left;
}

.clinic-title:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin: 15px 0;
}

/* Content */
.clinic-description p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: left;
}

/* Feature List */
.clinic-features {
  margin: 1.5rem 0;
  padding-left: 1.2rem;
}

.clinic-features li {
  margin-bottom: 0.8rem;
  position: relative;
  list-style: none;
}

.clinic-features li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: -1rem;
  font-size: 1.2rem;
}

/* Button */
.clinic-button {
  display: inline-flex;
  align-items: center;
  background: var(--primary-color);
  color: #000;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  margin-top: auto;
  align-self: flex-start;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .clinic-card,
  .clinic-card:nth-child(even) {
    flex-direction: column;
    min-height: auto;
  }

  .clinic-card-image {
    min-height: 200px;
    flex: 0 0 auto;
  }

  .clinic-card-content {
    padding: 25px;
  }
}

/* Fixed History Section with Full Bleed */
.history-hero {
  position: relative;
  width: 100%;
  padding: 100px 0;
  overflow: hidden;
  background: white;
}

.history-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.history-hero-image {
  position: relative;
  border-radius: 0 30px 30px 0;
  overflow: hidden;
  height: 500px;
  box-shadow: 30px 30px 0 var(--primary-color);
  margin-left: -50px;
}

.history-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.history-hero-content {
  padding: 40px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}

.history-hero-content p {
  text-align: left;
}

/* Decorative Elements */
.history-hero-content:before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  z-index: -1;
  opacity: 0.2;
  border-radius: 15px;
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
  .history-hero-container {
    grid-template-columns: 1fr;
    padding: 0 30px;
  }

  .history-hero-image {
    height: 400px;
    border-radius: 30px;
    margin-left: 0;
    margin-bottom: -60px;
    box-shadow: 0 30px 0 var(--primary-color);
  }

  .history-hero-content {
    margin-top: 0;
    padding: 60px 30px;
  }
}

@media (max-width: 768px) {
  .history-hero {
    padding: 80px 0;
  }

  .history-hero-image {
    height: 300px;
  }

  .history-hero-content:before {
    width: 40px;
    height: 40px;
  }
}

/* Focus Card Section */
.focus-section {
  padding: 40px 20px;
  background-color: var(--backdrop-color);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 3rem;
  max-width: 1300px;
  margin: 4rem auto;
}

/* Focus Card */
.focus-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 2rem;
}

.focus-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.focus-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.focus-icon {
  width: 70px;
  height: 70px;
  background-color: var(--background-black-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-top: -35px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.focus-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 1rem 1.5rem 0.5rem;
  color: #222;
  text-align: center;
}

.focus-card ul {
  padding: 0 2rem;
  list-style: none;
  margin-top: 1rem;
  width: 100%;
}

.focus-card li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  color: #444;
  font-size: 1.05rem;
  line-height: 1.6;
}

.focus-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
}

/* Responsive */
@media (max-width: 1024px) {
  .focus-grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .focus-section {
    padding: 60px 16px;
  }

  .focus-grid {
    grid-template-columns: 1fr;
    max-width: 90%;
    gap: 2rem;
  }

  .focus-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .focus-card {
    padding-bottom: 1.5rem;
  }

  .focus-image {
    height: 160px;
  }

  .focus-card h3 {
    font-size: 1.4rem;
  }

  .focus-card li {
    font-size: 1rem;
  }
}

/* Mindset Philosophy Section */
.philosophy-section {
  padding: 80px 20px;
}

.philosophy-content {
  display: flex;
  gap: 50px;
  align-items: center;
  max-width: 1100px;
  margin: 50px auto 0;
}

.philosophy-portrait {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

blockquote {
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #333;
  border-left: 3px solid var(--primary-color);
  padding-left: 20px;
  margin-bottom: 30px;
}

.philosophy-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.point {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.point .material-icons {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 2px;
}

.mindset-list {
  margin: 1.5rem 0;
  padding-left: 20px;
}

.mindset-list li {
  margin-bottom: 1rem;
  position: relative;
  list-style: none;
  padding-left: 30px;
}

.mindset-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
}

/* Mobile */
@media (max-width: 768px) {
  .philosophy-content {
    flex-direction: column;
  }

  blockquote {
    font-size: 1.1rem;
  }
}

/* Location Section Styling */
.location-section {
  padding: 4rem 1rem;
}

.location-description {
  flex: 1 1 450px;
}

.location-description h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.location-description p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.location-highlights {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  gap: 1rem;
}

.highlight-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 0.2rem;
  min-width: 24px;
}

.highlight-item p {
  margin: 0;
  color: #444;
  font-size: 0.95rem;
}

iframe {
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* === Programs & Pricing Cards === */

.pricing-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  padding: 4rem 2rem;
  background-color: var(--backdrop-color);
}

.pricing-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.plan-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.plan-age,
.plan-date,
.plan-days,
.plan-time,
.plan-price {
  font-size: 1rem;
  margin: 0.25rem 0;
  color: #333;
}

.plan-price {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1rem;
  color: #00754a;
}

/* Different background colors by program type */
.summer-camp {
  border-top: 5px solid #ffbe00;
}
.elite {
  border-top: 5px solid #e63946;
}
.high-performance {
  border-top: 5px solid #457b9d;
}
.futures-elite {
  border-top: 5px solid #2a9d8f;
}
.futures-top-elite {
  border-top: 5px solid #6a4c93;
}
.futures-high-performance {
  border-top: 5px solid #00b4d8;
}

/* Responsive spacing below 600px */
@media (max-width: 600px) {
  .pricing-section {
    padding: 2rem 1rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .plan-title {
    font-size: 1.25rem;
  }

  .plan-price {
    font-size: 1.1rem;
  }
}

.status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.3em 0.6em;
  border-radius: 0.5em;
  margin-bottom: 0.75rem;
  color: #fff;
}

.status.in {
  background-color: #2ecc71;
}

.status.out {
  background-color: #e74c3c;
}

.under-construction {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 2rem;
  text-align: center;
  background-color: var(--backdrop-color);
  min-height: 60vh;
  font-family: "Inter", sans-serif;
}

.construction-content {
  max-width: 600px;
}

.construction-icon {
  font-size: 4rem;
  color: #f4a261;
  margin-bottom: 1rem;
}

.under-construction h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.under-construction p {
  font-size: 1rem;
  color: #444;
}

/* News Section */
.news-section {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Individual News Item */
.news-item {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-left: 6px solid var(--primary-color);
}

/* Tag Styles */
.news-tag {
  align-self: flex-start;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  color: #fff;
}

/* Tag Colors */
.news-tag.news {
  background-color: #0077cc;
}

.news-tag.clinics {
  background-color: var(--primary-color);
}

.news-tag.alert {
  background-color: #dc3545;
}

/* Date */
.news-date {
  font-size: 0.85rem;
  color: #777;
}

/* Title */
.news-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
  margin: 0.25rem 0;
  text-align: left;
}

/* Description */
.news-description {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
  text-align: left;
}

/* Responsive */
@media (max-width: 480px) {
  .news-item {
    padding: 1rem;
  }

  .news-title {
    font-size: 1.1rem;
  }

  .news-description {
    font-size: 0.95rem;
  }
}
