:root {
  /* Primary Colors */
  --primary-light: #b91c1c;
  --primary-dark: #1a1a1a;

  /* Secondary Colors */
  --secondary-white: #ffffff;
  --secondary-light: #cccccc;
  --secondary-medium: #666666;
  --secondary-dark: #2a2a2a;

  /* Text Colors */
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-light: #999999;
  --text-white: #ffffff;
  --textColor-light: rgba(255, 255, 255, 0.1);

  /* Background Colors */
  --bg-dark: #121212;
  --bg-opacity: rgba(18, 18, 18, 0.8);

  /* Typography Sizes */
  --text-body1: 1rem;
  --text-body2: 0.875rem;
  --text-body3: 0.75rem;
  --text-subtitle1: 1.5rem;
  --text-subtitle2: 1.125rem;
  --text-subtitle3: 0.875rem;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Bai Jamjuree", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--secondary-white);
  overflow-x: hidden;
  /* background-image: url("../home-bg.jpg"); */
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 100vh;
}

html {
  scroll-behavior: smooth;
}

#menu-toggle {
  background: transparent;
  outline: none;
  border: none;
}

/* Utility Classes (Tailwind-like) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }
}

.fixed {
  position: fixed;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.top-0 {
  top: 0;
}

.top-5 {
  top: 1.25rem;
}

.z-20 {
  z-index: 20;
}

.z-50 {
  z-index: 50;
}

.z-998 {
  z-index: 998;
}

.z-999 {
  z-index: 999;
}

.z-9999 {
  z-index: 9999;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-flex {
  display: inline-flex;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.justify-start {
  justify-content: flex-start;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-\[10px\] {
  gap: 10px;
}

.gap-\[15px\] {
  gap: 15px;
}

.gap-\[30px\] {
  gap: 30px;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.h-screen {
  height: 100vh;
}

.max-w-full {
  max-width: 100%;
}

.max-w-\[85\%\] {
  max-width: 85%;
}

.max-w-\[70\%\] {
  max-width: 70%;
}

.max-w-\[300px\] {
  max-width: 300px;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-\[5px\] {
  padding-top: 5px;
  padding-bottom: 5px;
}

.py-\[0px\] {
  padding-top: 0;
  padding-bottom: 0;
}

.py-\[28\.5px\] {
  padding-top: 28.5px;
  padding-bottom: 28.5px;
}

.p-2 {
  padding: 0.5rem;
}

.p-\[13px\] {
  padding: 13px;
}

.p-\[9px\] {
  padding: 9px;
}

.p-\[12px\] {
  padding: 12px;
}

.pl-\[6px\] {
  padding-left: 6px;
}

.pr-\[15px\] {
  padding-right: 15px;
}

.pr-\[21px\] {
  padding-right: 21px;
}

.rounded-\[130px\] {
  border-radius: 130px;
}

.rounded-\[30px\] {
  border-radius: 30px;
}

.rounded-\[50px\] {
  border-radius: 50px;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-\[5px\] {
  border-radius: 5px;
}

.rounded-t-none {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.rounded-bl-\[30px\] {
  border-bottom-left-radius: 30px;
}

.rounded-br-\[30px\] {
  border-bottom-right-radius: 30px;
}

.rounded-bl-\[50px\] {
  border-bottom-left-radius: 50px;
}

.rounded-br-\[50px\] {
  border-bottom-right-radius: 50px;
}

.border {
  border-width: 1px;
}

.border-2 {
  border-width: 2px;
}

.border-t {
  border-top-width: 1px;
}

.border-t-0 {
  border-top-width: 0;
}

.border-x {
  border-left-width: 1px;
  border-right-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.border-r {
  border-right-width: 1px;
  border-right-style: solid;
}

.border-l-\[5px\] {
  border-left-width: 5px;
}

.border-primary-light {
  border-color: var(--primary-light);
}

.border-l-\[5px\] {
  border-left-width: 5px;
  border-left-style: solid;
}

.border-2 {
  border-width: 2px;
}

.border {
  border-width: 1px;
}

.border-secondary-white {
  border-color: var(--secondary-white);
}

.bg-primary-light {
  background-color: var(--primary-light);
}

.bg-primary-dark {
  background-color: var(--primary-dark);
}

.bg-secondary-white {
  background-color: var(--secondary-white);
}

.bg-secondary-dark {
  background-color: var(--secondary-dark);
}

.bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.bg-black {
  background-color: #000;
}

.bg-opacity-50 {
  background-opacity: 0.5;
}

.bg-opacity-65 {
  background-opacity: 0.65;
}

.backdrop-blur-\[30px\] {
  backdrop-filter: blur(30px);
}

.backdrop-blur-\[50px\] {
  backdrop-filter: blur(50px);
}

.text-primary-light {
  color: var(--primary-light);
}

.text-secondary-white {
  color: var(--secondary-white);
}

.text-secondary-medium {
  color: var(--secondary-medium);
}

.text-secondary-light {
  color: var(--secondary-light);
}

.text-white {
  color: #ffffff;
}

.text-body1 {
  font-size: var(--text-body1);
}

.text-body2 {
  font-size: var(--text-body2);
}

.text-body3 {
  font-size: var(--text-body3);
}

.text-subtitle1 {
  font-size: var(--text-subtitle1);
}

.text-subtitle2 {
  font-size: var(--text-subtitle2);
}

.text-subtitle3 {
  font-size: var(--text-subtitle3);
}

.text-\[18px\] {
  font-size: 18px;
}

.text-\[20px\] {
  font-size: 20px;
}

.text-\[22px\] {
  font-size: 22px;
}

.text-\[24px\] {
  font-size: 24px;
}

.text-\[25px\] {
  font-size: 25px;
}

.text-\[28px\] {
  font-size: 28px;
}

.text-\[36px\] {
  font-size: 36px;
}

.text-\[44px\] {
  font-size: 44px;
}

.leading-\[18px\] {
  line-height: 18px;
}

.leading-\[32px\] {
  line-height: 32px;
}

.leading-\[46px\] {
  line-height: 46px;
}

.leading-\[54px\] {
  line-height: 54px;
}

.leading-\[22px\] {
  line-height: 22px;
}

.leading-\[24px\] {
  line-height: 24px;
}

.leading-\[26px\] {
  line-height: 26px;
}

.leading-\[28px\] {
  line-height: 28px;
}

.leading-\[30px\] {
  line-height: 30px;
}

.leading-\[34px\] {
  line-height: 34px;
}

.leading-\[40px\] {
  line-height: 40px;
}

.leading-\[42px\] {
  line-height: 42px;
}

.leading-\[11px\] {
  line-height: 11px;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.cursor-pointer {
  cursor: pointer;
  border-radius: 50%;
}

.transition-all {
  transition-property: all;
}

.transition-transform {
  transition-property: transform;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.ease-in {
  transition-timing-function: ease-in;
}

.ease-in-out {
  transition-timing-function: ease-in-out;
}

.ease-linear {
  transition-timing-function: linear;
}

.hover\:bg-secondary-white:hover {
  background-color: var(--secondary-white);
}

.hover\:text-primary-light:hover {
  color: var(--primary-light);
}

.hover\:text-secondary-medium:hover {
  color: var(--secondary-medium);
}

.group:hover .group-hover\:block {
  display: block;
}

.group:hover .group-hover\:text-primary-light {
  color: var(--primary-light);
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-full {
  transform: translateX(100%);
}

.translate-y-full {
  transform: translateY(100%);
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-\[0_0_10px_rgba\(0\,0\,0\,0\.5\)\] {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-y-auto {
  overflow-y: auto;
}

.w-1 {
  width: 0.25rem;
}

.w-5 {
  width: 1.25rem;
}

.w-10 {
  width: 2.5rem;
}

.w-\[32px\] {
  width: 32px;
}

.w-\[40px\] {
  width: 40px;
}

.w-\[180px\] {
  width: 180px;
}

.h-1 {
  height: 0.25rem;
}

.h-10 {
  height: 2.5rem;
}

.h-\[30px\] {
  height: 30px;
}

.h-\[35px\] {
  height: 35px;
}

.h-\[42px\] {
  height: 42px;
}

.h-\[26px\] {
  height: 26px;
}

.h-\[32px\] {
  height: 32px;
}

.h-\[40px\] {
  height: 40px;
}

.h-\[50px\] {
  height: 50px;
}

.h-\[60px\] {
  height: 60px;
}

.h-\[70px\] {
  height: 70px;
}

.h-\[95px\] {
  height: 95px;
}

.h-\[108px\] {
  height: 108px;
}

.h-\[148px\] {
  height: 148px;
}

.h-\[162px\] {
  height: 162px;
}

/* Responsive */
@media (min-width: 640px) {
  .sm\:pt-\[150px\] {
    padding-top: 150px;
  }

  .sm\:pb-\[50px\] {
    padding-bottom: 50px;
  }

  .sm\:max-w-full {
    max-width: 100%;
  }

  .sm\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .sm\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .sm\:gap-5 {
    gap: 1.25rem;
  }

  .sm\:gap-\[30px\] {
    gap: 30px;
  }

  .sm\:w-\[50\%\] {
    width: 50%;
  }

  .sm\:text-body1 {
    font-size: var(--text-body1);
  }

  .sm\:text-\[20px\] {
    font-size: 20px;
  }

  .sm\:text-\[22px\] {
    font-size: 22px;
  }

  .sm\:text-\[28px\] {
    font-size: 28px;
  }

  .sm\:text-\[36px\] {
    font-size: 36px;
  }

  .sm\:leading-\[22px\] {
    line-height: 22px;
  }

  .sm\:leading-\[26px\] {
    line-height: 26px;
  }

  .sm\:leading-\[34px\] {
    line-height: 34px;
  }

  .sm\:leading-\[42px\] {
    line-height: 42px;
  }

  .sm\:h-\[42px\] {
    height: 42px;
  }

  .sm\:max-w-\[35px\] {
    max-width: 35px;
  }

  .sm\:p-\[12px\] {
    padding: 12px;
  }
}

@media (min-width: 1024px) {
  .lg\:pt-\[200px\] {
    padding-top: 200px;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .lg\:py-\[0px\] {
    padding-top: 0;
    padding-bottom: 0;
  }

  .lg\:gap-\[30px\] {
    gap: 30px;
  }

  .lg\:gap-10 {
    gap: 2.5rem;
  }

  .lg\:w-\[50\%\] {
    width: 50%;
  }

  .lg\:justify-between {
    justify-content: space-between;
  }

  .lg\:justify-end {
    justify-content: flex-end;
  }

  .lg\:items-center {
    align-items: center;
  }

  .lg\:pl-\[60px\] {
    padding-left: 60px;
  }

  .lg\:pl-\[20px\] {
    padding-left: 20px;
  }

  .lg\:pl-\[30px\] {
    padding-left: 30px;
  }

  .lg\:pr-\[13px\] {
    padding-right: 13px;
  }

  .lg\:py-\[13px\] {
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .lg\:max-w-full {
    max-width: 100%;
  }

  .lg\:gap-x-0 {
    column-gap: 0;
  }
}

@media (min-width: 1280px) {
  .xl\:px-\[70px\] {
    padding-left: 70px;
    padding-right: 70px;
  }

  .xl\:gap-10 {
    gap: 2.5rem;
  }

  .xl\:gap-\[30px\] {
    gap: 30px;
  }

  .xl\:pr-\[21px\] {
    padding-right: 21px;
  }

  .xl\:py-\[28\.5px\] {
    padding-top: 28.5px;
    padding-bottom: 28.5px;
  }

  .xl\:text-\[36px\] {
    font-size: 36px;
  }

  .xl\:leading-\[42px\] {
    line-height: 42px;
  }
}

@media (min-width: 1536px) {
  .\32xl\:px-\[60px\] {
    padding-left: 60px;
    padding-right: 60px;
  }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

input,
select,
textarea {
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

/* Hero Section - desktop: profile-desktop.jpg, mobile: profile-mobile.jpg */
.hero {
  margin-top: 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("../profile-desktop.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.bg-\[url\(\.\/assets\/images\/home-bg\.png\)\] {
  background-image: url("../profile-desktop.jpg") !important;
}

section.hero,
.hero.bg-\[url\(\.\/assets\/images\/home-bg\.png\)\] {
  background-image: url("../profile-desktop.jpg");
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
}

.bg-cover {
  background-size: cover;
}

.bg-center {
  background-position: center;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.pt-\[130px\] {
  padding-top: 130px;
}

.sm\:pt-\[150px\] {
  padding-top: 150px;
}

.lg\:pt-\[200px\] {
  padding-top: 200px;
}

.pb-\[30px\] {
  padding-bottom: 30px;
}

.sm\:pb-\[50px\] {
  padding-bottom: 50px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--secondary-white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(185, 28, 28, 0.2);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  border: 1px solid var(--primary-light);
}

.hero-badge span {
  color: var(--primary-light);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.hero h1 {
  color: var(--secondary-white);
  margin-bottom: 1rem;
}

.hero-description {
  color: var(--secondary-light);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid var(--primary-light);
  transition: var(--transition-normal);
  display: inline-block;
}

.btn-primary {
  background: var(--primary-light);
  color: var(--secondary-white);
}

.btn-primary:hover {
  background: transparent;
  color: var(--primary-light);
}

.btn-apply-programs {
  background: #ffffff !important;
  color: var(--primary-light) !important;
  border: 2px solid var(--primary-light);
}

.btn-apply-programs:hover {
  background: rgba(185, 28, 28, 0.08) !important;
  color: var(--primary-light) !important;
  border-color: var(--primary-light);
}

.btn-outline {
  background: transparent;
  color: var(--primary-light);
}

.btn-outline:hover {
  background: var(--primary-light);
  color: var(--secondary-white);
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-light);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-badge::before,
.section-badge::after {
  content: "";
  width: 30px;
  height: 3px;
  background: var(--primary-light);
  border-radius: 2px;
}

.section-description {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* Trainer Spotlight Section */
.trainer-spotlight-section {
  background: var(--secondary-white);
}

.trainer-spotlight {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: center;
}

.trainer-spotlight-image {
  position: relative;
}

.trainer-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--primary-light);
  box-shadow: 0 10px 30px rgba(185, 28, 28, 0.3);
}

.trainer-main-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: var(--transition-slow);
}

.trainer-image-wrapper:hover .trainer-main-image {
  transform: scale(1.05);
}

.trainer-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  pointer-events: none;
}

.trainer-spotlight-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.trainer-badge {
  display: inline-block;
  background: rgba(185, 28, 28, 0.1);
  border: 2px solid var(--primary-light);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  color: var(--primary-light);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
  width: fit-content;
}

.trainer-name-large {
  color: var(--text-primary);
  font-size: 3rem;
  margin: 0;
  line-height: 1.2;
}

.trainer-title {
  color: var(--primary-light);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.trainer-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-dark);
  border-radius: var(--radius-md);
}

.trainer-stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--secondary-light);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trainer-bio-large {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.8;
  margin: 0;
}

.trainer-specializations h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.specialization-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  background: var(--bg-dark);
  color: var(--secondary-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: var(--transition-normal);
}

.tag:hover {
  border-color: var(--primary-light);
  background: rgba(185, 28, 28, 0.1);
  color: var(--primary-light);
}

.trainer-social-media {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: var(--primary-light);
  color: var(--secondary-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition-normal);
  border: 2px solid var(--primary-light);
}

.social-icon:hover {
  background: transparent;
  color: var(--primary-light);
  transform: translateY(-3px);
}

.trainer-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 968px) {
  .trainer-spotlight {
    grid-template-columns: 1fr;
  }

  .trainer-name-large {
    font-size: 2.5rem;
  }

  .trainer-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .trainer-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .trainer-name-large {
    font-size: 2rem;
  }
}

/* Packages Section */
.packages-section {
  background: var(--bg-dark);
  color: var(--secondary-white);
}

.packages-section .section-title h2 {
  color: var(--secondary-white);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.package-card {
  background: var(--secondary-dark);
  border: 2px solid var(--primary-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--primary-light);
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(185, 28, 28, 0.3);
}

.package-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #16a34a;
  color: var(--secondary-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.package-badge-foundation {
  background: #16a34a;
  color: #fff;
}

[dir="rtl"] .package-badge {
  right: auto;
  left: 1rem;
}

.package-name {
  color: var(--secondary-white);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  margin-top: 0.7rem;
}

.package-time-badge {
  display: inline-block;
  text-align: center;
  background: rgba(185, 28, 28, 0.15);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0.75rem 0 1rem;
  border: 1.5px solid var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-target {
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.package-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 0.5rem;
}

.package-period {
  color: var(--secondary-light);
  margin-bottom: 2rem;
}

.package-features {
  list-style: none;
  margin-bottom: 0;
  flex: 1;
}

.package-features li {
  padding: 0.75rem 0;
  /* color: var(--secondary-light); */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features li::before {
  content: "✓";
  color: var(--primary-light);
  font-weight: 700;
  margin-right: 0.75rem;
}

.package-features li.package-feature-inbody,
.package-feature-inbody strong {
  color: #d4a017;
}

.package-cta {
  width: 100%;
  text-align: center;
  margin-top: auto;
  margin-bottom: 0;
}

/* Header List Styles - Remove Dots */
header ul,
header li,
nav ul,
nav li,
footer ul,
footer li {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

footer li {
  display: flex;
}

/* On mobile only, make ul flex-column */
@media (max-width: 767px) {
  footer ul {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* Footer Grid */
.footer-grid {
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-top: 30px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 2.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem 0;
  }
}

@media (min-width: 1280px) {
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Header Styles */
header {
  position: relative;
}

#nav-header {
  transition: transform 0.3s ease-linear;
}

#header {
  transition: all 0.3s ease-in-out;
}

.bg-white\/10 {
  background: rgba(255, 255, 255, 0.1);
}

.backdrop-blur-\[30px\] {
  backdrop-filter: blur(30px) !important;
  -webkit-backdrop-filter: blur(30px) !important;
}

.border-secondary-white {
  border-color: rgba(255, 255, 255, 0.2);
}

.text-secondary-medium {
  color: var(--secondary-medium);
}

.rounded-\[130px\] {
  border-radius: 130px;
}

.rounded-t-none {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.rounded-bl-\[30px\] {
  border-bottom-left-radius: 30px;
}

.rounded-br-\[30px\] {
  border-bottom-right-radius: 30px;
}

.rounded-bl-\[50px\] {
  border-bottom-left-radius: 50px;
}

.rounded-br-\[50px\] {
  border-bottom-right-radius: 50px;
}

.border-t-0 {
  border-top: 0;
}

/* Footer */
footer {
  background-color: var(--primary-dark);
  color: var(--secondary-white);
  padding: 4rem 0 2.5rem; /* py-16 md:py-20 xl:py-24 */
  position: relative;
}

@media (min-width: 768px) {
  footer {
    padding: 5rem 0 2.5rem;
  }
}

@media (min-width: 1280px) {
  footer {
    padding: 6rem 0 2.5rem;
  }
}

footer .container {
  position: relative;
  z-index: 1;
  padding: 3rem 1rem; /* py-12 px-[16px] */
  border: 2px solid var(--primary-light) !important; /* Ensure red border is visible */
  border-color: #b91c1c !important; /* Explicit red border */
}

@media (min-width: 768px) {
  footer .container {
    padding: 4rem 2.5rem; /* md:py-16 md:px-10 */
  }
}

@media (min-width: 1536px) {
  footer .container {
    padding: 5rem 3.75rem; /* xl:py-20 2xl:px-[60px] */
  }
}

.bg-\[url\(\.\/assets\/images\/footer-bg\.png\)\] {
  background-image: url("./assets/images/footer-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-\[\#FFFFFF03\] {
  background: rgba(255, 255, 255, 0.03) !important;
}

.border-b {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.text-white {
  color: var(--secondary-white);
}

.text-body1 {
  font-size: var(--text-body1);
}

.text-body2 {
  font-size: var(--text-body2);
}

.text-body3 {
  font-size: var(--text-body3);
}

.text-subtitle1 {
  font-size: var(--text-subtitle1);
}

.text-subtitle2 {
  font-size: var(--text-subtitle2);
}

.text-subtitle3 {
  font-size: var(--text-subtitle3);
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-\[1\.6px\] {
  letter-spacing: 1.6px;
}

.tracking-\[1\.8px\] {
  letter-spacing: 1.8px;
}

.tracking-\[0\.72px\] {
  letter-spacing: 0.72px;
}

.tracking-\[0\.56px\] {
  letter-spacing: 0.56px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: var(--secondary-light);
  font-size: 0.9rem;
}

.footer-section a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--secondary-light);
}

/* Ramadan Promotion */
.ramadan-promo {
  background: linear-gradient(135deg, var(--primary-light) 0%, #991b1b 100%);
  color: var(--secondary-white);
  padding: 3rem 0;
  text-align: center;
  /* margin-top: 4rem; */
}

.ramadan-promo h3 {
  color: var(--secondary-white);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.ramadan-promo p {
  color: var(--secondary-white);
  font-size: 1.125rem;
  opacity: 0.9;
}

/* Hover Link */
.hover-link {
  transition: var(--transition-normal);
}

.hover-link:hover {
  color: var(--primary-light);
}

/* Mobile Menu Toggle */
#mobile-menu.active {
  transform: translateX(0);
}

#overlay.active {
  display: block;
}

/* Additional Utility Classes for About Section */
.lg\:w-1\/2 {
  width: 50%;
}

.lg\:w-\[50\%\] {
  width: 50%;
}

.self-end {
  align-self: flex-end;
}

.rounded-\[50px_0px_50px_0px\] {
  border-radius: 50px 0px 50px 0px;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.icon-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-fallback {
  display: block;
}

.py-\[70px\] {
  padding-top: 70px;
  padding-bottom: 70px;
}

.xl\:py-\[100px\] {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (min-width: 640px) {
  .sm\:gap-5 {
    gap: 1.25rem;
  }

  .sm\:gap-\[15px\] {
    gap: 15px;
  }

  .sm\:gap-\[30px\] {
    gap: 30px;
  }

  .sm\:h-\[6px\] {
    height: 6px;
  }

  .sm\:w-\[6px\] {
    width: 6px;
  }

  .sm\:text-subtitle1 {
    font-size: var(--text-subtitle1);
  }

  .sm\:text-\[36px\] {
    font-size: 36px;
  }

  .sm\:leading-\[46px\] {
    line-height: 46px;
  }

  .sm\:tracking-\[1\.8px\] {
    letter-spacing: 1.8px;
  }

  .sm\:gap-\[10px\] {
    gap: 10px;
  }
}

@media (min-width: 1024px) {
  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:w-1\/2 {
    width: 50%;
  }

  .lg\:w-\[50\%\] {
    width: 50%;
  }

  .lg\:gap-5 {
    gap: 1.25rem;
  }
}

@media (min-width: 1280px) {
  .xl\:gap-10 {
    gap: 2.5rem;
  }

  .xl\:gap-5 {
    gap: 1.25rem;
  }

  .xl\:gap-\[30px\] {
    gap: 30px;
  }

  .xl\:w-auto {
    width: auto;
  }

  .xl\:text-\[44px\] {
    font-size: 44px;
  }

  .xl\:leading-\[54px\] {
    line-height: 54px;
  }

  .xl\:h-\[108px\] {
    height: 108px;
  }
}

/* About Section Styles */
.about-section {
  padding: 70px 0;
  overflow: hidden;
  background: var(--secondary-white);
}

@media (min-width: 1280px) {
  .about-section {
    padding: 100px 0;
  }
}

.about-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .about-container {
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .about-container {
    flex-direction: row;
  }
}

.about-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  justify-content: flex-start;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .about-content {
    gap: 30px;
  }
}

@media (min-width: 1024px) {
  .about-content {
    width: 50%;
  }
}

@media (min-width: 1280px) {
  .about-content {
    gap: 2.5rem;
  }
}

.about-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (min-width: 1280px) {
  .about-header {
    gap: 1.25rem;
  }
}

.about-badge-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

@media (min-width: 640px) {
  .about-badge-wrapper {
    gap: 10px;
  }
}

.about-badge-line {
  width: 20px;
  height: 4px;
  border-radius: 4px;
  background: var(--primary-light);
}

@media (min-width: 640px) {
  .about-badge-line {
    height: 6px;
  }
}

.about-badge {
  font-size: var(--text-subtitle2);
  color: var(--primary-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

@media (min-width: 640px) {
  .about-badge {
    font-size: var(--text-subtitle1);
    letter-spacing: 1.8px;
  }
}

.about-title-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

@media (min-width: 640px) {
  .about-title-wrapper {
    gap: 10px;
  }
}

.about-title-bar {
  width: 4px;
  height: 95px;
  background: var(--primary-light);
  border-radius: 6px;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .about-title-bar {
    width: 6px;
  }
}

@media (min-width: 1280px) {
  .about-title-bar {
    height: 108px;
  }
}

.about-title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: var(--primary-dark);
}

@media (min-width: 640px) {
  .about-title {
    font-size: 36px;
    line-height: 46px;
  }
}

@media (min-width: 1280px) {
  .about-title {
    font-size: 44px;
    line-height: 54px;
  }
}

.about-description {
  font-size: var(--text-body2);
  font-weight: 500;
  color: var(--secondary-dark);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .about-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (min-width: 1280px) {
  .about-features {
    gap: 1.25rem;
  }
}

.about-feature-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: flex-start;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .about-feature-item {
    gap: 1.25rem;
  }
}

@media (min-width: 1280px) {
  .about-feature-item {
    gap: 30px;
  }
}

.about-feature-icon {
  width: 55px;
  height: auto;
}

@media (min-width: 640px) {
  .about-feature-icon {
    width: 60px;
  }
}

@media (min-width: 1280px) {
  .about-feature-icon {
    width: auto;
  }
}

.about-feature-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

@media (min-width: 640px) {
  .about-feature-content {
    gap: 0.5rem;
  }
}

.about-feature-title {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  color: var(--primary-light);
}

@media (min-width: 1280px) {
  .about-feature-title {
    font-size: 24px;
    line-height: 30px;
  }
}

.about-feature-text {
  font-size: var(--text-body2);
  font-weight: 500;
  color: var(--secondary-dark);
}

.about-cta-button {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--secondary-white);
  background: var(--primary-light);
  padding: 11.5px 24px;
  border-radius: 30px;
  font-size: 14px;
  line-height: normal;
  font-weight: 700;
  letter-spacing: 0.72px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.about-cta-button:hover {
  background: var(--primary-dark);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: scale(1.05);
}

@media (min-width: 1024px) {
  .about-cta-button {
    padding: 13.5px 30px;
    font-size: var(--text-subtitle2);
  }
}

.about-cta-button i {
  font-size: 1.125rem;
}

.about-image-wrapper {
  width: 100%;
  position: relative;
  align-self: flex-end;
}

@media (min-width: 1024px) {
  .about-image-wrapper {
    width: 50%;
  }
}

.about-image-container {
  position: relative;
  border-radius: 50px 0px 50px 0px;
  overflow: hidden;
}

.about-image {
  width: 288px;
  height: auto;
  display: block;
}

@media (min-width: 640px) {
  .about-image {
    width: 500px;
  }
}

@media (min-width: 1280px) {
  .about-image {
    width: 100%;
  }
}

.about-counter-box {
  position: absolute;
  bottom: 0;
  left: 80px;
  background: var(--primary-light);
  color: white;
  border-radius: 15px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
  animation: bounce 2s infinite;
}

@media (min-width: 640px) {
  .about-counter-box {
    bottom: 30px;
    border-radius: 20px;
    padding: 20px 30px;
  }
}

.about-counter-number {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  color: var(--secondary-white);
}

@media (min-width: 640px) {
  .about-counter-number {
    font-size: 56px;
    line-height: 66px;
  }
}

.about-counter-label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

@media (min-width: 640px) {
  .about-counter-label {
    font-size: 20px;
    line-height: 26px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 2rem 0;
    background-image: url("../profile-mobile.jpg");
  }
  section.hero,
  .hero.bg-\[url\(\.\/assets\/images\/home-bg\.png\)\] {
    background-image: url("../profile-mobile.jpg") !important;
  }

  .section {
    padding: 3rem 0;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }
}
