@import url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');

:root {
  /* Backgrounds */
  --color-bg-primary:   #0f0f0f;
  --color-bg-secondary: #1a1a1a;
  --color-bg-surface:   #242424;

  /* Brand accent */
  --color-primary:      #e8192c;
  --color-primary-dark: #b0111f;

  /* Text */
  --color-text-base:       #f0f0f0;
  --color-text-muted:      #8a8a8a;
  --color-text-on-accent:  #ffffff;

  /* Borders */
  --color-border:       #2e2e2e;
  --color-border-light: #444444;

  /* Typography */
  --font-display:  'Bebas Neue', sans-serif;
  --font-heading:  'Barlow Condensed', sans-serif;
  --font-body:     'Inter', sans-serif;

  /* Font weights */
  --fw-regular:  400;
  --fw-semibold: 600;
  --fw-bold:     700;
  --fw-black:    900;
}

html, body{
	margin:0;
	padding:0;
	overflow-x: hidden;
	max-width: 100%;
	background-color: var(--color-bg-primary);
	color: var(--color-text-base);
}

*{
	box-sizing: border-box;
	margin:0;
	padding:0;
	font-family: var(--font-heading);
}

p,
li,
input,
textarea,
button,
.table td {
  font-family: var(--font-body);
}

/*Header*/

header{
	position:fixed;
	left: 0px;
	top:0px;
	width: 100%;
	z-index: 10;
	background-color: var(--color-bg-primary);
	padding:15px 15px;
}
header .container{
	-webkit-display: flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .logo a{
	font-size: 30px;
	text-decoration: none;
	color: var(--color-text-on-accent);
	font-weight: var(--fw-bold);
	font-family: var(--font-heading);
}
header .logo a span{
	color: var(--color-primary);
}
header .nav{
	position: fixed;
	background-color: var(--color-primary);
	width: 280px;
	top:0;
	right:0;
	height: 100%;
	z-index: 99;
	padding:100px 0px 15px; 
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	-webkit-transition: transform .5s ease;
    transition: transform .5s ease;
}
header .nav.open{
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
header .nav ul{
	list-style: none;
	margin:0;
	padding:0px;
}
header .nav ul li{
display: block;
}
header .nav ul li a{
	text-decoration: none;
	font-size: 30px;
	font-weight: var(--fw-semibold);
    color: var(--color-text-on-accent);
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    display: block;
    position: relative;
    padding:10px 30px;
}
header .nav ul li a.active::before{
	content: '';
	position: absolute;
	left:0px;
	top:0px;
	height: 100%;
	width:100%;
	background-color: var(--color-bg-primary);
	opacity:.2;
	-webkit-transition: width .5s ease;
	transition: width .5s ease;
	z-index: -1;
}
header .nav ul li a::before{
	content: '';
	position: absolute;
	left:0px;
	top:0px;
	height: 100%;
	width:0px;
	background-color: var(--color-bg-primary);
	opacity:.2;
	-webkit-transition: width .5s ease;
	transition: width .5s ease;
	z-index: -1;
}
header .nav ul li a:hover::before{
	width: 100%;
}
header .ham-burger{
	display: inline-block;
	position: relative;
	z-index: 100;
	background: rgba(15, 15, 15, 0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	padding: 10px 10px 2px 10px;
	transition: all 0.3s ease;
}
header .ham-burger:hover{
	background: rgba(30, 30, 30, 0.95);
	border-color: var(--color-primary);
}
header .ham-burger.active{
	background: rgba(15, 15, 15, 0.95);
	border-color: rgba(255, 255, 255, 0.1);
}
header .ham-burger span{
	height: 3px;
	margin-bottom:8px;
	display: block;
	background-color: var(--color-text-base);
	width:30px;
	-webkit-transition: transform .5s ease;
	transition: transform .5s ease;
}
header .ham-burger span:nth-child(1){
	transform-origin: left top;
}
header .ham-burger span:nth-child(2){
	transform-origin: left bottom;
}

header .ham-burger.active span:nth-child(1){
	-webkit-transform: rotate(45deg) translateY(-6px);
	transform: rotate(45deg) translateY(-6px);
}
header .ham-burger.active span:nth-child(2){
	-webkit-transform: rotate(-45deg) translateY(6px);
	transform: rotate(-45deg) translateY(6px)
}

.container{
	max-width: 1170px;
	margin: auto;
}

/*Home section*/
.home{
	height: 100vh;
	background-color: var(--color-bg-primary);
	padding:15px;
	-webkit-display: flex;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden; /* Prevent animated background from spilling out */
}

.hero-bg-container {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: 1;
  pointer-events: none;
  transform: translateY(calc(var(--scroll-y, 0px) * 0.45));
  will-change: transform;
  overflow: hidden;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(15, 15, 15, 0.7), rgba(15, 15, 15, 0.8)), url('../images/home.jpg?v=2');
  background-size: cover;
  background-position: center;
  animation: kenBurns 28s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% {
    transform: scale(1.0) translateY(0);
  }
  100% {
    transform: scale(1.15) translateY(-25px);
  }
}

.hero-glow-aura {
	position: absolute;
	top: 0;
	left: 0;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(232, 25, 44, 0.14) 0%, rgba(232, 25, 44, 0.03) 50%, rgba(0, 0, 0, 0) 70%);
	filter: blur(50px);
	pointer-events: none;
	z-index: 2; /* In front of animated bg (z-index 1), behind text box (z-index 3) */
	will-change: transform;
	transform: translate3d(-1000px, -1000px, 0); /* Start offscreen */
}

.home .go-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-decoration: none;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  display: inline-block;
  transition: all 0.3s ease;
}

.home .go-down:hover {
  transform: translateX(-50%) scale(1.2);
}

.home .go-down .fa {
  color: rgba(255, 255, 255, 0.5);
  font-size: 2.25rem;
  transition: all 0.3s ease;
  -webkit-animation: goDownFuturistic 2s infinite ease-in-out;
  animation: goDownFuturistic 2s infinite ease-in-out;
}

.home .go-down:hover .fa {
  color: var(--color-primary);
  text-shadow: 0 0 20px var(--color-primary);
}

@-webkit-keyframes goDownFuturistic {
  0% { transform: translateY(0); opacity: 0.4; text-shadow: none; }
  50% { transform: translateY(8px); opacity: 1; text-shadow: 0 0 12px var(--color-primary-alpha, rgba(232, 25, 44, 0.5)); }
  100% { transform: translateY(0); opacity: 0.4; text-shadow: none; }
}

@keyframes goDownFuturistic {
  0% { transform: translateY(0); opacity: 0.4; text-shadow: none; }
  50% { transform: translateY(8px); opacity: 1; text-shadow: 0 0 12px var(--color-primary-alpha, rgba(232, 25, 44, 0.5)); }
  100% { transform: translateY(0); opacity: 0.4; text-shadow: none; }
}

/* Modern MMA Redirect Badge */
.mma-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  margin-bottom: 8px;
  align-self: center;
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mma-badge,
.mma-badge:hover,
.mma-badge * {
  text-decoration: none !important;
}

.mma-badge:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--color-primary);
  box-shadow: 0 0 15px var(--color-primary-alpha, rgba(232, 25, 44, 0.15));
  transform: translateY(-1px);
}

.mma-badge .badge-tag {
  background: var(--color-primary);
  color: var(--color-text-on-accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}

.mma-badge .badge-text {
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
}

.mma-badge .badge-link {
  color: var(--color-text-base);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.mma-badge:hover .badge-link {
  color: var(--color-primary);
}

.mma-badge .badge-link i {
  font-size: 0.875rem;
  transition: transform 0.2s ease;
}

.mma-badge:hover .badge-link i {
  transform: translateX(4px);
}

@media (max-width: 575px) {
  .mma-badge {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    row-gap: 6px;
    align-items: center;
    text-align: left;
    padding: 10px 14px;
    border-radius: 12px;
    max-width: 380px;
    width: 100%;
    margin: 0 auto 12px auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-sizing: border-box;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  }
  .mma-badge:active {
    transform: scale(0.98);
    background: rgba(255, 255, 255, 0.08);
  }
  .mma-badge .badge-tag {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: center;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
  }
  .mma-badge .badge-text {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    font-size: 0.8rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.85);
  }
  .mma-badge .badge-link {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.8rem;
    line-height: 1.2;
    font-weight: 600;
    color: var(--color-primary);
  }
  .mma-badge:active .badge-link i {
    transform: translateX(4px);
  }
}
.home .container{
  -webkit-display: flex;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 12px;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 3; /* Ensure it is in front of animated bg and glow aura */
}

.home h1{
	color: var(--color-text-on-accent);
	font-size: 60px;
	font-weight: var(--fw-bold);
	text-transform: uppercase;
	margin:0;
	text-shadow: 0 2px 8px rgba(0,0,0,0.6);
	font-family: var(--font-display);
}

.home h1 span{
	color: var(--color-primary);
}

.hero-cta{
    display: inline-block;
    padding: 12px 32px;
    background-color: var(--color-primary);
    color: var(--color-text-on-accent);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: var(--fw-bold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid var(--color-primary);
    border-radius: 0;
    margin-top: 8px;
    -webkit-transition: background-color .3s ease, color .3s ease, border-color .3s ease;
    transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}
.hero-cta:hover{
    background-color: transparent;
    color: var(--color-text-on-accent);
    border-color: var(--color-text-on-accent);
}


/*About section*/

.about{
	padding:80px 0px;
	background-color:#ffffff;
}

.about .content{ 
 -webkit-display: flex;
 display: flex;
}
.about .content .box{
	flex:0 0 33.33%;
	max-width: 33.33%;
	padding:15px;
}
.about .content .box .inner{
	background-color: var(--color-bg-surface);
}
.about .content .box:nth-child(2) .inner{
	background-color: var(--color-primary);
}
.about .content .box .inner .img img{
	width: 100%;
}
.about .content .box .inner .text{
	padding:30px;
}

.about .content .box .inner .text h4{
  font-size: 20px;
  margin:0;
  padding: 0px 0px 15px;
  font-weight: var(--fw-semibold);
  color:#ffffff;
 text-transform: capitalize;
  text-align: center;
}
.about .content .box .inner .text p{
	font-size: 15px;
	line-height:20px;
	color:#ffffff;
	text-align: center;
	margin:0;
	font-family: var(--font-body);
}


/*Service Section*/
.service{
	padding:80px 0px;
	background-color: var(--color-primary);
}

.service .content{
	-webkit-display:flex;
	display:flex;
}

.service .content .box{
	flex:0 0 50%;
	max-width: 50%;
	padding:15px;
}

.service .content .text h2{
	font-size: 30px;
	font-weight: var(--fw-semibold);
	color:#ffffff;
	padding:0px 0px 20px;
}

.service .content .text p{
    font-size: 15px;
	line-height:20px;
	color:#ffffff;
	margin:0;
	padding:0px 0px 20px;
	font-family: var(--font-body);
}

.service .content .text .btn{
	padding:8px 30px;
	background-color: var(--color-bg-surface);
	color:#ffffff;
	text-decoration: none;
	display: inline-block;
	border:1px solid transparent;
	cursor: pointer;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}

.service .content .text .btn:hover{
	border:1px solid #ffffff;
	color:#ffffff;
	background-color: transparent;
}
.service .content .accordian-container{
	margin-bottom: 5px;
}
.service .content .accordian-container .head{
	background-color:rgba(0,0,0,0.2);
	position: relative;
	padding:12px 15px;
	cursor: pointer;
}
.service .content .accordian-container .head .fa{
	position: absolute;
	right: 10px;
	top:13px;
	color:#ffffff;
	height:30px;
	width: 30px;
	text-align: center;
	line-height: 30px;
	color:#ffffff;
	border-radius: 50%;
}
.service .content .accordian-container .head h4{
  font-size: 20px;
  margin:0;
  padding:0;
  font-weight: var(--fw-semibold);
  color: #ffffff;
  text-transform: capitalize;
}
.service .content .accordian-container.active .head{
  background-color: var(--color-bg-surface);
}
.service .content .accordian-container .body{
	display: none;
	padding:15px;
	background-color: var(--color-bg-surface);
	border-top: 1px solid var(--color-border);
}

.service .content .accordian-container:nth-child(1) .body{
	display: block;
}
.service .content .accordian-container .body p{
    font-size: 15px;
	line-height:20px;
	color:#ffffff;
	margin:0;
	padding:0;
	font-family: var(--font-body);
}


/*Classes Section*/

.classes{
	padding:80px 0px 50px;
	background-color: #ffffff;
}

.classes .content{
	-webkit-display: flex;
	display: flex;
}

.classes .content .box{
	padding:15px;
	flex:0 0 50%;
	max-width: 50%;
}

.classes .content .img img{
	width: 100%;
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.classes .content .text h2{
    font-size: 30px;
    font-weight: var(--fw-semibold);
    color: var(--color-text-base);
    padding: 0px 0px 20px;
}

.classes .content .text p{
	font-size: 15px;
    line-height: 20px;
    color: var(--color-text-base);
    margin: 0;
    padding: 0px 0px 30px;
    font-family: var(--font-body);
}


.classes .content .class-items .item{
	margin-bottom: 30px;
	display: flex;
}
.classes .content .class-items .item:nth-child(1){
 background-color: var(--color-bg-surface);
}
.classes .content .class-items .item:nth-child(2){
 background-color: var(--color-primary);
}
.classes .content .class-items .item .item-text{
	padding: 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.classes .content .class-items .item .item-text,
.classes .content .class-items .item .item-img{
	flex:0 0 50%;
	max-width: 50%;
	position: relative;
}

.classes .content .class-items .item .item-img img{
 width: 100%;
 display: block;
}
.classes .content .class-items .item .item-img .price{
	position: absolute;
	height: 50px;
	width: 60px;
	font-size:20px;
	font-weight: var(--fw-semibold); 
	color:#ffffff;
	text-align: center;
	line-height: 50px;
}
.classes .content .class-items .item:nth-child(1) .item-img .price{
 background-color: var(--color-primary);
 left:0;
 top:0;
}
.classes .content .class-items .item:nth-child(2) .item-img .price{
 background-color: var(--color-bg-surface);
 right:0;
 top:0;
}
.classes .content .class-items .item .item-text h4{
	font-size: 20px;
    margin: 0;
    padding: 0px 0px 15px;
    font-weight: var(--fw-semibold);
    color: #ffffff;
    text-transform: capitalize;
    text-align: left;
}

.classes .content .class-items .item .item-text p{
	font-size: 15px;
    line-height: 20px;
    color: #ffffff;
    text-align:left;
    margin: 0;
    padding:0 0 20px;
    font-family: var(--font-body);
}
.classes .content .class-items .item .item-text a{
 font-size: 16px;
 text-decoration: none;
 display: inline-block;
}

.classes .content .class-items .item .item-text a{
	color:#ffffff;
}




/*Start Today Section*/
.start-today {
  position: relative;
  background-color: var(--color-bg-primary);
  overflow: hidden;
  padding: 100px 0;
}

.start-today::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-primary-alpha, rgba(232, 25, 44, 0.06)) 0%, transparent 70%);
  top: -150px;
  left: -150px;
  z-index: 1;
  pointer-events: none;
}

.start-today::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-primary-alpha, rgba(232, 25, 44, 0.04)) 0%, transparent 70%);
  bottom: -200px;
  right: -150px;
  z-index: 1;
  pointer-events: none;
}

.start-today .content {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.start-today .content .box {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0px 15px;
}

.start-today .content .img {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.start-today .content .img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.start-today .content:hover .img img {
  transform: scale(1.04);
}

.start-today .content .text h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0px 0px 20px;
  line-height: 1.1;
  background: linear-gradient(to right, #ffffff, #dcdcdc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.start-today .content .text p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-text-muted, #a0a0a0);
  margin: 0;
  padding: 0px 0px 30px;
  font-family: var(--font-body);
}

.start-today .content .text .btn {
  padding: 14px 38px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark, #a7141d) 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(208, 28, 40, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.start-today .content .text .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(208, 28, 40, 0.5);
  color: #ffffff;
}

.start-today .content .text .btn:active {
  transform: scale(0.97);
}




/*Class Schedule Section*/
.schedule{
	padding:80px 0px;
}

.schedule .content{
	-webkit-display: flex;
	display: flex;
}

.schedule .content .box{
	flex:0 0 50%;
	max-width: 50%;
	padding:15px;
}

.schedule .content .text h2{
   font-size: 30px;
    font-weight: var(--fw-semibold);
    color: var(--color-text-base);
    padding: 0px 0px 20px;
}

.schedule .content .text p{
	font-size: 15px;
    line-height: 20px;
    color: var(--color-text-muted);
    margin: 0;
    padding: 0px 0px 20px;
    font-family: var(--font-body);
}
.schedule .content .text img{
	width: 100%;
	transform: rotateY(180deg);
}

.schedule .content .timing .table{
	width: 100%;
	border-collapse: collapse;
}

.schedule .content .timing .table td{
	border:1px solid var(--color-border);
	padding: 8px;
	font-size: 15px;
	text-align: center;
	color: var(--color-text-base);
}

.schedule .content .timing .table tr:nth-child(even) td.day{
	background-color: var(--color-bg-surface);
}
.schedule .content .timing .table tr:nth-child(odd) td.day{
	background-color: var(--color-border-light);
}
.schedule .content .timing .table tr:nth-child(1) td.day{
	background-color: var(--color-primary);
}
.schedule .content .timing .table tr td.day{
	color:#ffffff;
	border-color:transparent;
}


/*Gallery Section*/

.gallery {
	padding: 80px 15px;
	background-color: var(--color-bg-secondary);
}

.gallery .container {
	max-width: 1170px;
	margin: auto;
}

.gallery h2 {
	font-size: 42px;
	font-weight: var(--fw-bold);
	color: var(--color-text-base);
	margin-bottom: 20px;
	text-align: center;
	font-family: var(--font-display);
	letter-spacing: -0.02em;
}

.gallery-intro {
	font-size: 16px;
	color: var(--color-text-muted);
	text-align: center;
	margin-bottom: 50px;
	font-family: var(--font-body);
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 40px;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	cursor: pointer;
	aspect-ratio: 1 / 1;
	background-color: var(--color-bg-surface);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 12px rgba(232, 25, 44, 0.4);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: filter 0.3s ease;
}

.gallery-item:hover img {
	filter: brightness(1.1);
}

.gallery-item-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	color: var(--color-text-on-accent);
	padding: 20px 15px 15px;
	font-size: 14px;
	font-weight: var(--fw-semibold);
	font-family: var(--font-body);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-caption {
	opacity: 1;
}

/* Responsive Gallery Grid */
@media (max-width: 1199px) {
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.gallery {
		padding: 60px 15px;
	}

	.gallery h2 {
		font-size: 32px;
		margin-bottom: 15px;
	}

	.gallery-intro {
		margin-bottom: 35px;
		font-size: 14px;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
		gap: 15px;
		margin-top: 30px;
	}
}

@media (max-width: 550px) {
	.gallery {
		padding: 50px 10px;
	}

	.gallery h2 {
		font-size: 26px;
	}

	.gallery-intro {
		font-size: 13px;
		margin-bottom: 25px;
	}

	.gallery-grid {
		gap: 10px;
	}
}


/*Price Section*/

.price-package{
	padding: 80px 0px;
	background-color: #ffffff;
}
.price-package h2{
	font-size: 30px;
	font-weight: 500;
	color: var(--color-text-base);
	padding: 0px 0px 20px;
	text-align: center;
}

.price-package .title-p{
 font-size: 15px;
 line-height: 20px;
 color: var(--color-text-muted);
 margin:0;
 text-align: center;
 padding:0 20% 50px;
 font-family: var(--font-body);
}

.price-package .content{
	-webkit-display: flex;
	display: flex;
}
.price-package .content .box{
	flex:0 0 33.33%;
	max-width: 33.33%;
	padding: 15px;
}
.price-package .content .box .inner{
	background-color: #f0f0f0;
}
.price-package .content .box .inner .price-tag{
	padding: 15px;
	font-size: 20px;
	background-color: var(--color-primary);
	color:#ffffff;
	text-align: center;
	font-weight: 700;
}
.price-package .content .box .inner .text{
	padding:30px 15px;
	text-align: center;
}
.price-package .content .box .inner .text h3{
	font-size: 24px;
	color: var(--color-text-base);
	margin:0;
	padding:0px 0px 20px;
	font-weight: 700;
}
.price-package .content .box .inner .text p{
 font-size: 15px;
 line-height: 20px;
 color: var(--color-text-muted);
 margin:0;
 text-align: center;
 padding:0 0 5px;
 font-family: var(--font-body);
}
.price-package .content .box .inner .text .btn{
    padding: 8px 30px;
    background-color: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    border: 1px solid transparent;
    cursor: pointer;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    margin-top: 10px;
}
.price-package .content .box .inner .text .btn:hover{
	border-color: var(--color-text-base);
	color: var(--color-text-base);
	background-color: transparent;
}
.price-package .content .box .inner .img img{
	width: 100%;
}



/*Contact Section*/

.contact{
	padding:80px 0px;
	background-color: var(--color-bg-surface);
}

.contact .content{
	-webkit-display: flex;
	display: flex;
}

.contact .content .box{
	flex:0 0 50%;
	max-width: 50%;
	padding: 15px;
}

.contact .content .form input,
.contact .content .form textarea{
 height: 45px;
 width: 100%;
 padding:6px 12px;
 margin-bottom: 25px;
 background-color: transparent;
 border:1px solid #ffffff;
 font-family: var(--font-body);
 color:#ffffff;
}
.contact .content .form input:focus,
.contact .content .form textarea:focus{
 outline: none;
}
.contact .content .form input::placeholder,
.contact .content .form textarea::placeholder{
	color:#ffffff;
}
.contact .content .form textarea{
	height: 100px;
}

.contact .content .form button{
	border:none;
	outline: none;
	box-shadow: none;
	height: 45px;
	padding:0px 50px;
	border:1px solid transparent;
	background-color: var(--color-primary);
	color:#ffffff;
	font-size: 15px;
	transition: all .5s ease;
	cursor: pointer;
}
.contact .content .form button:hover{
	background-color:transparent;
	color:#ffffff; 
    border-color:#ffffff;
}

.contact .content .text h2{
	font-size: 30px;
    font-weight: 500;
    color: var(--color-primary);
    padding: 0px 0px 20px;
}
.contact .content .text p{
    font-size: 15px;
    line-height: 20px;
    color: #ffffff;
    margin: 0;
    padding: 0px 0px 30px;
    font-family: var(--font-body);
}

.contact .content .text .info ul{
	list-style: none;
	padding:0;
	margin:0;
}

.contact .content .text .info li{
	display: block;
	margin-bottom: 15px;
	color:#ffffff;
	font-size: 15px;
	letter-spacing: 1px;
	position: relative;
	padding-left: 40px;
	font-family: var(--font-body);
}
.contact .content .text .info li span{
	display: inline-block;
	position: absolute;
	left:0px;
	top:0px;
	font-size: 20px;
	color: var(--color-primary);
}
.contact .content .text .social {
	padding-top: 30px;
}
.contact .content .text .social a{
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	background-color: var(--color-primary);
    text-decoration: none;	
    display: inline-block;
    margin-right: 10px;
    transition: all .5s ease;
    border:1px solid transparent;
} 

.contact .content .text .social a:hover{
	background-color: transparent;
    border-color: #ffffff;
}

.contact .content .text .social a span{
	color:#ffffff;
	font-size: 20px;
}

.contact .content .text .copy{
	border-top:1px solid #333333;
	margin-top: 30px;
	padding-top: 20px;
	color:#c5c5c5;
	font-size: 15px;
}




/* ===== Dark Theme Overrides ===== */

/* --- Sections: light backgrounds -> dark --- */
.about {
  background-color: var(--color-bg-secondary);
}

.classes {
  background-color: var(--color-bg-secondary);
}

.schedule {
  background-color: var(--color-bg-secondary);
}

.gallery {
  background-color: var(--color-bg-primary);
}

.price-package {
  background-color: var(--color-bg-secondary);
}

.price-package .content .box .inner {
  background-color: var(--color-bg-surface);
}

/* --- Text: formerly-white-section dark text -> light --- */
.classes .content .text h2,
.classes .content .text p {
  color: var(--color-text-base);
}

.schedule .content .text h2 {
  color: var(--color-text-base);
}

.schedule .content .text p {
  color: var(--color-text-muted);
}

.schedule .content .timing .table td {
  color: var(--color-text-base);
  border-color: var(--color-border);
}

.gallery h2 {
  color: var(--color-text-base);
}

.price-package h2 {
  color: var(--color-text-base);
}

.price-package .title-p {
  color: var(--color-text-muted);
}

.price-package .content .box .inner .text h3 {
  color: var(--color-text-base);
}

.price-package .content .box .inner .text p {
  color: var(--color-text-muted);
}

.price-package .content .box .inner .text .btn:hover {
  border-color: var(--color-text-base);
  color: var(--color-text-base);
}

/* ===== PRICING SECTION ===== */
.pricing {
  background-color: var(--color-bg-secondary);
  padding: 80px 0;
}

.pricing .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.pricing h1 {
  text-align: center;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: var(--fw-bold);
  color: var(--color-text-on-accent);
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.pricing .intro-text {
  text-align: center;
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-text-muted);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.pricing-card {
  background-color: var(--color-bg-primary);
  border: 2px solid var(--color-border);
  border-radius: 8px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pricing-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(232, 25, 44, 0.15);
}

.pricing-card.featured {
  border-color: var(--color-primary);
  background-color: rgba(232, 25, 44, 0.05);
}

.pricing-card.featured:hover {
  box-shadow: 0 12px 30px rgba(232, 25, 44, 0.25);
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: var(--fw-bold);
  color: var(--color-text-base);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card .price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: var(--fw-black);
  color: var(--color-primary);
}

.pricing-card .duration {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card .discount-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: rgba(232, 25, 44, 0.1);
  padding: 5px 10px;
  border-radius: 4px;
  align-self: center;
}

.pricing-card .features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
  flex-grow: 1;
}

.pricing-card .features li {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}

.pricing-card .features li:last-child {
  border-bottom: none;
}

.pricing-card .select-plan-btn {
  background-color: var(--color-primary);
  color: var(--color-text-on-accent);
  border: 2px solid var(--color-primary);
  padding: 12px 32px;
  font-size: 16px;
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.pricing-card .select-plan-btn:hover {
  background-color: transparent;
  color: var(--color-primary);
}

/* ===== CONTACT SECTION ===== */
.contact {
  background-color: var(--color-bg-primary);
  padding: 80px 0;
}

.contact .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.contact h1 {
  text-align: center;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: var(--fw-bold);
  color: var(--color-text-on-accent);
  margin-bottom: 60px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item strong {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-base);
  margin: 0;
  line-height: 1.6;
}

.contact-form-wrapper {
  background-color: var(--color-bg-secondary);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#contact-form input,
#contact-form textarea {
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  color: var(--color-text-base);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
  color: var(--color-text-muted);
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 8px rgba(232, 25, 44, 0.2);
}

#contact-form button {
  background-color: var(--color-primary);
  color: var(--color-text-on-accent);
  border: 2px solid var(--color-primary);
  padding: 12px 32px;
  font-size: 16px;
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

#contact-form button:hover {
  background-color: transparent;
  color: var(--color-primary);
}

.form-message {
  padding: 16px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  margin-top: 10px;
}

.form-message.success {
  background-color: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.5);
  color: #4CAF50;
}

/* Responsive Pricing Grid */
@media (max-width: 991px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .pricing h1,
  .contact h1 {
    font-size: 36px;
    margin-bottom: 30px;
  }
  
  .pricing .intro-text {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-grid {
    gap: 30px;
  }
  
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  
  #contact-form {
    gap: 15px;
  }
}

@media (max-width: 550px) {
  .pricing h1,
  .contact h1 {
    font-size: 28px;
  }
  
  .pricing-card {
    padding: 20px 15px;
  }
  
  .pricing-card h3 {
    font-size: 18px;
  }
  
  .pricing-card .price {
    font-size: 32px;
  }
  
  .pricing-card .features {
    margin: 15px 0;
  }
  
  .pricing-card .features li {
    font-size: 12px;
    padding: 6px 0;
  }
  
  .contact-item strong {
    font-size: 14px;
  }
  
  .contact-item p {
    font-size: 14px;
  }
}


/*Responsive*/

/*if screen width is less than or equal to 991px then*/
@media(max-width: 991px){
   .home{
   	background-position: center;
   }
  .classes .content{
  	flex-wrap: wrap;
  }
 .classes .content .box {
    flex: 0 0 100%;
    max-width: 100%;
}
.classes .content .img{
	display: none;
}
.start-today .content .box{
	padding:15px;
}
}

/*if screen width is less than or equal to 767px then*/
@media(max-width: 767px){
  .home h1{
      font-size: 40px;
  }
  .hero-cta{
      font-size: 16px;
      padding: 10px 28px;
  }
  .about .content{
  	 flex-wrap: wrap;
  }
  .about .content .box {
    flex: 0 0 100%;
    max-width: 100%;
}
.service .content{
	flex-wrap: wrap;
}
.service .content .box {
    flex: 0 0 100%;
    max-width: 100%;
}
.classes .content .class-items .item{
	flex-wrap: wrap;
}
.classes .content .class-items .item .item-text, 
.classes .content .class-items .item .item-img {
    flex: 0 0 100%;
    max-width: 100%;
}
.schedule .content{
	flex-wrap: wrap;
}
.schedule .content .box{
flex: 0 0 100%;
    max-width: 100%;	
}
.schedule .content .timing {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  display: block;
}
.schedule .content .timing .table {
  min-width: 600px;
}
.start-today .content{
	flex-wrap: wrap;
}
.start-today .content .box {
    flex: 0 0 100%;
    max-width: 100%;
  }
 .gallery .content{
  flex-wrap: wrap;
 }
.gallery .content .box {
    flex: 0 0 100%;
    max-width: 100%;
}
.price-package .content{
	flex-wrap: wrap;
}
.price-package .content .box {
    flex: 0 0 100%;
    max-width: 100%;
}
.contact .content{
	flex-wrap: wrap;
}
.contact .content .box {
    flex: 0 0 100%;
    max-width: 100%;
}
}

/*if screen width is less than or equal to 550px then*/
@media(max-width: 550px){
  .home h1{
      font-size: 30px;
  }
  .hero-cta{
      display: block;
      width: fit-content;
      text-align: center;
  }
}


/* ===== FOOTER SECTION ===== */

.footer {
  background-color: var(--color-bg-primary);
  border-top: 2px solid var(--color-border);
  padding: 60px 15px 30px;
  margin-top: 60px;
}

.footer .container {
  max-width: 1170px;
  margin: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-branding h3 {
  font-size: 28px;
  font-weight: var(--fw-bold);
  font-family: var(--font-heading);
  color: var(--color-text-on-accent);
  margin: 0 0 10px 0;
}

.footer-branding h3 span {
  color: var(--color-primary);
}

.footer-tagline {
  font-size: 14px;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  margin: 0;
  font-style: italic;
}

.footer-info h4,
.footer-hours h4,
.footer-social h4 {
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: var(--color-text-base);
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-section {
  margin-bottom: 25px;
}

.info-section p {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
  font-family: var(--font-body);
}

#footer-hours {
  font-size: 12px;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  line-height: 1.8;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-text-on-accent);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-links a:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
  font-family: var(--font-body);
}

/* Footer Responsive */
@media (max-width: 1199px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 40px 15px 20px;
    margin-top: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-branding h3 {
    font-size: 24px;
  }

  .footer-info h4,
  .footer-hours h4,
  .footer-social h4 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .info-section {
    margin-bottom: 15px;
  }

  .info-section p {
    font-size: 12px;
  }
}


/* ===== LIGHTBOX MODAL ===== */

.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--color-text-on-accent);
  font-size: 32px;
  cursor: pointer;
  padding: 10px;
  transition: color 0.3s ease;
  font-family: Arial, sans-serif;
  font-weight: bold;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--color-primary);
}

.lightbox-caption {
  color: var(--color-text-on-accent);
  margin-top: 20px;
  font-size: 16px;
  text-align: center;
  font-family: var(--font-body);
}

/* Lightbox Mobile */
@media (max-width: 767px) {
  .lightbox-overlay {
    padding: 10px;
  }

  .lightbox-content {
    max-width: 100vw;
    max-height: 100vh;
  }

  .lightbox-close {
    top: -35px;
    font-size: 28px;
  }

  .lightbox-caption {
    font-size: 14px;
    margin-top: 15px;
  }
}

/* ==========================================================================
   UI/UX PRO MAX - PREMIUM STYLING & ANIMATIONS
   ========================================================================== */

/* 1. Custom Smooth Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-dark);
}

/* 2. Floating Glassmorphic Header */
header {
  position: fixed;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 10px 30px;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
  top: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  background: rgba(15, 15, 15, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 30px;
}

header .logo a {
  transition: opacity 0.3s ease;
}
header .logo a:hover {
  opacity: 0.85;
}

/* Slide-out Mobile Menu Styling Enhancements */
header .nav {
  background: rgba(232, 25, 44, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

header .nav ul li a {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
header .nav ul li a:hover {
  padding-left: 40px;
  color: var(--color-bg-primary);
}

/* 3. Glowing Card & Container Enhancements */
.about .content .box .inner {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about .content .box .inner:hover {
  transform: translateY(-10px);
  border-color: rgba(232, 25, 44, 0.4);
  box-shadow: 0 20px 40px -10px rgba(232, 25, 44, 0.3);
}

/* Middle featured card with custom gradient and intense glow */
.about .content .box:nth-child(2) .inner {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px -10px rgba(232, 25, 44, 0.5);
}

.about .content .box:nth-child(2) .inner:hover {
  box-shadow: 0 25px 50px -10px rgba(232, 25, 44, 0.7);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Accordion Styling (Services) */
.service .content .accordian-container {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.15);
}

.service .content .accordian-container:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.service .content .accordian-container .head {
  padding: 18px 20px;
  transition: background-color 0.3s ease;
}

.service .content .accordian-container.active {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Class item cards */
.classes .content .class-items .item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.classes .content .class-items .item:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 25, 44, 0.4);
  box-shadow: 0 15px 35px -10px rgba(232, 25, 44, 0.35);
}

.classes .content .class-items .item:nth-child(1) {
  background: rgba(30, 30, 30, 0.55);
  backdrop-filter: blur(10px);
}

.classes .content .class-items .item:nth-child(2) {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Schedule Table */
.schedule .content .timing .table {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.schedule .content .timing .table td {
  padding: 14px 18px;
  transition: background-color 0.25s ease;
}

.schedule .content .timing .table tr:hover td:not(.day) {
  background-color: rgba(255, 255, 255, 0.03);
}

/* Pricing Grid & Cards */
.pricing-grid {
  display: grid;
  gap: 30px;
}

.pricing-card {
  background: rgba(30, 30, 30, 0.4) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 16px !important;
  padding: 35px 25px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

.pricing-card:hover {
  border-color: var(--color-primary) !important;
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 40px -10px rgba(232, 25, 44, 0.4) !important;
  background: rgba(30, 30, 30, 0.65) !important;
}

.pricing-card.featured {
  border-color: var(--color-primary) !important;
  background: rgba(232, 25, 44, 0.04) !important;
  box-shadow: 0 10px 30px rgba(232, 25, 44, 0.1) !important;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--color-primary);
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 4px 30px;
  transform: rotate(45deg);
  letter-spacing: 1px;
}

/* Contact Form Elements */
.contact-form-wrapper {
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px;
}

#contact-form input,
#contact-form textarea {
  background: rgba(15, 15, 15, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px !important;
  color: var(--color-text-base) !important;
  padding: 14px 18px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#contact-form input:focus,
#contact-form textarea:focus {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 12px rgba(232, 25, 44, 0.3) !important;
  background: rgba(15, 15, 15, 0.8) !important;
}

/* 4. Interactive Buttons & CTA Hover Feedback */
.btn, .hero-cta, #contact-form button, .pricing-card .select-plan-btn {
  border-radius: 8px !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Shimmer overlay effect for primary CTA buttons on hover */
.btn::after, .hero-cta::after, #contact-form button::after, .pricing-card .select-plan-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.6s ease;
  z-index: -1;
}

.btn:hover::after, .hero-cta:hover::after, #contact-form button:hover::after, .pricing-card .select-plan-btn:hover::after {
  left: 100%;
}

.btn:hover, .hero-cta:hover, #contact-form button:hover, .pricing-card .select-plan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(232, 25, 44, 0.4);
}

.btn:active, .hero-cta:active, #contact-form button:active, .pricing-card .select-plan-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(232, 25, 44, 0.4);
}

/* 5. Cursors */
.ham-burger,
.nav ul li a,
.go-down,
.btn,
.hero-cta,
.pricing-card button,
.accordian-container .head,
.gallery-item,
#contact-form button {
  cursor: pointer !important;
}

/* 6. Accessibility & Motion Reduction */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* 7. Scroll Offset for Sticky Header */
html {
  scroll-behavior: smooth;
}
section[id] {
  scroll-margin-top: 90px;
}

/* 8. Hero Section Upgrades */
.home .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  gap: 15px;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  margin-bottom: 5px;
}

.home h1 {
  font-size: 80px;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 10px;
  font-weight: var(--fw-black);
}

.hero-description {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 600px;
  margin-bottom: 20px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-btn-group {
  display: flex;
  gap: 20px;
}

.hero-cta {
  padding: 14px 36px;
  font-size: 16px;
  border-radius: 8px !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: var(--fw-bold);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0;
}

.hero-cta.main-btn {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border: 1px solid var(--color-primary);
  color: var(--color-text-on-accent);
}

.hero-cta.main-btn:hover {
  background: transparent;
  border-color: var(--color-text-on-accent);
  box-shadow: 0 0 20px rgba(232, 25, 44, 0.5);
}

.hero-cta.outline-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-text-on-accent);
}

.hero-cta.outline-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-text-on-accent);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

@media(max-width: 767px) {
  .home h1 {
    font-size: 48px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-btn-group {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .home .hero-btn-group .hero-cta {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* ==========================================================================
   UI/UX ALIGNMENTS & BREAKPOINTS POLISH (2026 STANDARDS)
   ========================================================================== */

/* 1. Global Typography Adjustments */
body {
  line-height: 1.6 !important;
}

section:not(.home) h1,
section:not(.home) h2,
.section-title {
  font-family: var(--font-display) !important;
  font-size: 48px !important;
  font-weight: var(--fw-bold) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: var(--color-text-on-accent) !important;
  text-align: center;
  margin-bottom: 40px !important;
}

/* Adjust heading sizes for section headers in specific layouts */
.service .content .text h2,
.classes .content .text h2,
.schedule .content .text h2 {
  font-family: var(--font-display) !important;
  font-size: 42px !important;
  text-align: left;
  margin-bottom: 20px !important;
  color: var(--color-text-on-accent) !important;
}

/* 2. Responsive Breakpoint Overrides (≥992px for Desktop Layouts) */

/* Desktop Navigation styling inside Capsule */
@media(min-width: 992px) {
  header .ham-burger {
    display: none !important;
  }
  header .nav {
    position: static !important;
    width: auto !important;
    height: auto !important;
    background-color: transparent !important;
    padding: 0 !important;
    -webkit-transform: none !important;
    transform: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border: none !important;
    display: block !important;
  }
  header .nav ul {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
  }
  header .nav ul li {
    display: inline-block !important;
  }
  header .nav ul li a {
    font-size: 15px !important;
    font-weight: var(--fw-semibold) !important;
    padding: 8px 16px !important;
    color: var(--color-text-base) !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    letter-spacing: 0.05em !important;
  }
  header .nav ul li a:hover,
  header .nav ul li a.active {
    color: var(--color-primary) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
  }
  header .nav ul li a::before,
  header .nav ul li a:hover::before {
    display: none !important;
  }
}

/* Standardize wrapping breakpoints to 991px (Tablets / Portables) */
@media(max-width: 991px) {
  /* About section cards wrapping */
  .about .content {
    flex-wrap: wrap !important;
  }
  .about .content .box {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 20px;
  }
  .about .content .box:last-child {
    margin-bottom: 0;
  }

  /* Service section columns wrapping */
  .service .content {
    flex-wrap: wrap !important;
  }
  .service .content .box {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .service .content .text {
    margin-bottom: 30px;
    text-align: center;
  }
  .service .content .text h2 {
    text-align: center !important;
  }
  
  /* Classes section columns wrapping */
  .classes .content {
    flex-wrap: wrap !important;
  }
  .classes .content .box {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .classes .content .img {
    display: none !important;
  }
  .classes .content .text h2 {
    text-align: center !important;
  }
  .classes .content .text p {
    text-align: center !important;
  }
  .classes .content .class-items .item {
    flex-wrap: wrap !important;
  }
  .classes .content .class-items .item .item-text, 
  .classes .content .class-items .item .item-img {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .classes .content .class-items .item .item-img .price {
    right: 0 !important;
    left: auto !important;
  }
  
  /* Start Today section columns wrapping */
  .start-today .content {
    flex-wrap: wrap !important;
  }
  .start-today .content .box {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .start-today .content .text {
    text-align: center;
    margin-bottom: 30px;
  }
  .start-today .content .img {
    margin-top: 20px;
  }
  
  /* Schedule section columns wrapping */
  .schedule .content {
    flex-wrap: wrap !important;
  }
  .schedule .content .box {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .schedule .content .text {
    text-align: center;
    margin-bottom: 30px;
  }
  .schedule .content .text h2 {
    text-align: center !important;
  }
  .schedule .content .timing {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    display: block !important;
  }
  .schedule .content .timing .table {
    min-width: 600px !important;
  }
}

/* Mobile specific styling adjustments */
@media(max-width: 767px) {
  section:not(.home) h1,
  section:not(.home) h2,
  .section-title {
    font-size: 36px !important;
  }
  .service .content .text h2,
  .classes .content .text h2,
  .schedule .content .text h2 {
    font-size: 32px !important;
  }
}

/* 9. Restructured Schedule Timetable Styles */
.schedule-table {
  border-collapse: separate !important;
  border-spacing: 0 !important;
  width: 100% !important;
  overflow: hidden;
}

.schedule-table th {
  background-color: rgba(255, 255, 255, 0.03) !important;
  color: #ffffff !important;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 800;
  padding: 18px 15px;
  font-size: 15px;
  letter-spacing: 0.08em;
  border-bottom: 2px solid var(--color-primary) !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
}

.schedule-table td {
  padding: 18px 15px !important;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
}

.schedule-table tbody tr {
  transition: background-color 0.25s ease;
}

.schedule-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.015);
}

.schedule-table .day-col {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-primary) !important;
  background-color: rgba(255, 255, 255, 0.01) !important;
  font-size: 14px;
  width: 15%;
  letter-spacing: 0.05em;
  border-right: 1px solid rgba(255, 255, 255, 0.04) !important;
  text-align: center;
}

.schedule-table .slot {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 13px;
  font-family: var(--font-body);
  line-height: 1.45;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.schedule-table .slot:last-child {
  margin-bottom: 0;
}

.schedule-table .slot strong {
  font-family: var(--font-heading);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: inline-block;
  margin-bottom: 3px;
}

.schedule-table .men-slot {
  background: linear-gradient(135deg, rgba(208, 28, 40, 0.12) 0%, rgba(208, 28, 40, 0.03) 100%);
  border: 1px solid rgba(208, 28, 40, 0.28);
  border-left: 4px solid var(--color-primary);
  color: rgba(255, 255, 255, 0.75);
}

.schedule-table .men-slot strong {
  color: var(--color-primary);
}

.schedule-table .men-slot:hover {
  background: linear-gradient(135deg, rgba(208, 28, 40, 0.2) 0%, rgba(208, 28, 40, 0.08) 100%);
  border-color: rgba(208, 28, 40, 0.5);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 25px rgba(208, 28, 40, 0.25);
  color: #ffffff;
}

.schedule-table .women-slot {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12) 0%, rgba(249, 115, 22, 0.03) 100%);
  border: 1px solid rgba(249, 115, 22, 0.28);
  border-left: 4px solid #f97316;
  color: rgba(255, 255, 255, 0.75);
}

.schedule-table .women-slot strong {
  color: #f97316;
}

.schedule-table .women-slot:hover {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(249, 115, 22, 0.08) 100%);
  border-color: rgba(249, 115, 22, 0.5);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.25);
  color: #ffffff;
}

@media(max-width: 767px) {
  .schedule-table th {
    font-size: 14px;
    padding: 10px;
  }
  .schedule-table td {
    padding: 10px !important;
  }
  .schedule-table .day-col {
    font-size: 13px;
  }
  .schedule-table .slot {
    padding: 8px 10px;
    font-size: 12px;
  }
}

/* 10. Redesigned Classes Grid & Card Styles */
.classes .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.classes .section-header h2 {
  margin-bottom: 15px !important;
}

.classes .section-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.classes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.class-card {
  background: rgba(30, 30, 30, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.class-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 25, 44, 0.4);
  box-shadow: 0 20px 40px -10px rgba(232, 25, 44, 0.35);
  background: rgba(30, 30, 30, 0.65);
}

.class-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.class-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.class-card:hover .class-card-img img {
  transform: scale(1.08);
}

.class-card-price {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: 14px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.class-card-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.class-card-body h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: var(--fw-bold);
  color: var(--color-text-base);
  margin: 0 0 5px 0;
  text-transform: uppercase;
}

.coach-tag {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  margin-bottom: 15px;
}

.class-card-text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.class-details-btn {
  align-self: flex-start;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: #ffffff;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 24px;
  border-radius: 6px !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.class-details-btn:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(232, 25, 44, 0.3);
  color: #ffffff !important;
}

@media(max-width: 767px) {
  .classes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .class-card-body {
    padding: 20px;
  }
}

/* 11. Full-Width Schedule Layout Upgrades */
.schedule .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.schedule .section-header h2 {
  margin-bottom: 15px !important;
}

.schedule .section-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.schedule-table-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(18, 18, 18, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 2;
}

.schedule-table {
  width: 100% !important;
}

.schedule-table td {
  width: 42.5%;
}

.schedule-table .day-col {
  width: 15% !important;
}

/* 12. Schedule Holiday Styling */
.schedule-table .holiday-col {
  text-align: center;
  background: rgba(255, 255, 255, 0.01) !important;
}

.schedule-table .holiday-badge {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* 13. Stencil Rugged Branding & Hero Layout Upgrades */
header .logo a,
.home h1,
.footer-branding h3 {
  font-family: 'Black Ops One', var(--font-display) !important;
  letter-spacing: 1px;
}

header .logo a span,
.home h1 span,
.footer-branding h3 span {
  font-family: inherit !important; /* Forces span to inherit Black Ops One override, bypassing universal selector */
}

.home .container {
  align-items: center !important; /* Re-center hero layout */
  text-align: center !important;
  max-width: 900px !important;
  margin: 0 auto !important;
  gap: 8px !important; /* Tighten container gap spacing */
}

.home h1 {
  font-size: 90px !important;
  text-align: center !important;
  line-height: 1.0 !important;
  letter-spacing: 2px !important;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(232, 25, 44, 0.25) !important;
  margin-bottom: 10px !important; /* Tighten bottom margin */
}

.home h1 span {
  color: var(--color-primary) !important;
  text-shadow: 0 0 20px rgba(232, 25, 44, 0.5) !important;
}

.hero-tagline {
  letter-spacing: 0.3em !important;
  font-weight: var(--fw-bold) !important;
  margin-bottom: 8px !important; /* Tighten bottom margin */
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5) !important;
}

.hero-description {
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.4 !important; /* Less line height for cleaner reading */
  color: rgba(255, 255, 255, 0.85) !important;
  max-width: 650px !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9) !important;
  border: none !important; /* Remove borders for centered alignment */
  padding: 0 !important;
  margin-bottom: 25px !important; /* Tighten bottom margin */
  text-align: center !important;
}

@media(max-width: 991px) {
  .home .container {
    padding: 0 20px !important;
  }
  .home h1 {
    font-size: 70px !important;
  }
}

@media(max-width: 767px) {
  .home h1 {
    font-size: 48px !important;
  }
  .hero-description {
    font-size: 15px !important;
  }
}

/* 14. Hero Subtitle Tagline Styling */
.hero-subtitle {
  font-family: var(--font-heading) !important;
  font-size: 36px !important; /* Slightly smaller for subtitle sizing */
  font-weight: var(--fw-semibold) !important; /* Softer font weight */
  text-transform: none !important; /* Mixed case for modern 2026 UX format */
  letter-spacing: 0.02em !important;
  color: var(--color-text-base) !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6) !important;
  margin-top: 0 !important;
  margin-bottom: 10px !important; /* Tighten bottom margin */
  text-align: center !important;
}

@media(max-width: 767px) {
  .hero-subtitle {
    font-size: 26px !important;
  }
}

/* 15. Modern Address & Label Typography Styles */
.footer-info .info-section p,
.contact-item p {
  font-family: var(--font-body) !important;
  font-weight: 300 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  letter-spacing: 0.02em !important;
}

.footer-info .info-section h4,
.contact-item strong {
  font-family: var(--font-heading) !important;
  font-size: 14px !important;
  font-weight: var(--fw-bold) !important;
  color: var(--color-primary) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  margin-bottom: 8px !important;
}

/* 16. Mobile UI/UX Optimizations */
@media(max-width: 767px) {
  /* Mobile header positioning fix (remove transform to allow viewport-relative fixed drawer) */
  header {
    left: 0 !important;
    top: 0 !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 !important;
    background: #0f0f0f !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 15px 20px !important;
  }

  /* Section Padding Reductions */
  section {
    padding: 50px 0px !important;
  }
  
  /* Compact 2-column mobile gallery grid */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    margin-top: 25px !important;
  }
  
  /* Mobile sidebar navigation drawer (solid dark background to prevent text collision) */
  header .nav {
    background: #0f0f0f !important;
    box-shadow: -10px 0 45px rgba(0, 0, 0, 0.9) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
  }
  
  header .nav ul li a {
    color: var(--color-text-base) !important;
    background: #1a1a1a !important; /* Completely solid dark background (no transparency) */
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 8px !important;
    margin: 8px 20px !important;
    padding: 10px 20px !important;
    font-size: 22px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }
  
  header .nav ul li a:hover,
  header .nav ul li a.active {
    color: var(--color-text-on-accent) !important;
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    padding-left: 28px !important;
    box-shadow: 0 4px 15px rgba(232, 25, 44, 0.3) !important;
  }
  
  /* Horizontal scrollbar styling for mobile schedule table swipe indicator */
  .schedule-table-wrapper::-webkit-scrollbar {
    height: 5px !important;
    display: block !important;
  }
  
  .schedule-table-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02) !important;
  }
  
  .schedule-table-wrapper::-webkit-scrollbar-thumb {
    background: rgba(232, 25, 44, 0.4) !important;
    border-radius: 3px !important;
  }

  /* Prevent schedule table from compressing and allow horizontal scroll on mobile */
  .schedule-table {
    width: auto !important;
    min-width: 650px !important;
  }

  /* GPU-Accelerated Mobile-friendly fade-in reveal animations */
  .wow {
    animation-name: mobileFadeIn !important;
    animation-duration: 0.8s !important;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
    animation-fill-mode: both !important;
    visibility: visible !important;
    transition: none !important;
  }

  @keyframes mobileFadeIn {
    from {
      opacity: 0;
      transform: translateY(15px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Smooth drawer slide transition */
  header .nav {
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  /* Staggered fade-in animations for mobile navigation drawer options */
  header .nav.open ul li {
    animation: mobileNavFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  
  header .nav.open ul li:nth-child(1) { animation-delay: 0.05s; }
  header .nav.open ul li:nth-child(2) { animation-delay: 0.10s; }
  header .nav.open ul li:nth-child(3) { animation-delay: 0.15s; }
  header .nav.open ul li:nth-child(4) { animation-delay: 0.20s; }
  header .nav.open ul li:nth-child(5) { animation-delay: 0.25s; }
  header .nav.open ul li:nth-child(6) { animation-delay: 0.30s; }
  header .nav.open ul li:nth-child(7) { animation-delay: 0.35s; }
  header .nav.open ul li:nth-child(8) { animation-delay: 0.40s; }

  @keyframes mobileNavFadeIn {
    from {
      opacity: 0;
      transform: translateX(15px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Press/Touch micro-interactions for mobile */
  .pricing-card,
  .class-card,
  .gallery-item,
  .btn,
  .hero-cta,
  .class-details-btn,
  #contact-form button {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease !important;
  }

  .pricing-card:active,
  .class-card:active,
  .gallery-item:active {
    transform: scale(0.98) !important;
  }

  .btn:active,
  .hero-cta:active,
  .pricing-card .select-plan-btn:active,
  .class-details-btn:active,
  #contact-form button:active {
    transform: scale(0.96) !important;
  }

  /* Add spacing container padding on mobile screens */
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* Page-specific MMA Centering overrides */
.mma-page .home .container {
  align-items: center;
  text-align: center;
}

.mma-page .home .mma-badge {
  align-self: center;
}

.mma-page .home .hero-btn-group {
  justify-content: center;
}

/* Premium Mobile Animation Overrides */
@media (max-width: 767px) {
  /* Snappier duration, hardware acceleration, and GPU paint optimizations */
  .animated {
    -webkit-animation-duration: 0.5s !important;
    animation-duration: 0.5s !important;
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  /* Looping Shimmer Sweep on Primary CTAs for Mobile */
  .btn::after, 
  .hero-cta::after, 
  #contact-form button::after, 
  .pricing-card .select-plan-btn::after {
    -webkit-animation: shimmerSweep 3.5s infinite ease-in-out;
    animation: shimmerSweep 3.5s infinite ease-in-out;
  }

  @keyframes shimmerSweep {
    0% { left: -100%; }
    30% { left: 100%; }
    100% { left: 100%; }
  }
  @-webkit-keyframes shimmerSweep {
    0% { left: -100%; }
    30% { left: 100%; }
    100% { left: 100%; }
  }

  /* Soften slideInLeft: subtle translate-X + fade-in (avoids horizontal overflow / jitter) */
  @keyframes slideInLeft {
    from { transform: translate3d(-20px, 0, 0); opacity: 0; }
    to { transform: translate3d(0, 0, 0); opacity: 1; }
  }
  @-webkit-keyframes slideInLeft {
    from { -webkit-transform: translate3d(-20px, 0, 0); opacity: 0; }
    to { -webkit-transform: translate3d(0, 0, 0); opacity: 1; }
  }

  /* Soften slideInRight: subtle translate-X + fade-in (avoids horizontal overflow / jitter) */
  @keyframes slideInRight {
    from { transform: translate3d(20px, 0, 0); opacity: 0; }
    to { transform: translate3d(0, 0, 0); opacity: 1; }
  }
  @-webkit-keyframes slideInRight {
    from { -webkit-transform: translate3d(20px, 0, 0); opacity: 0; }
    to { -webkit-transform: translate3d(0, 0, 0); opacity: 1; }
  }

  /* Soften fadeInUp: tight translation-Y + fade-in + soft entrance glow for mobile */
  @keyframes fadeInUp {
    from {
      transform: translate3d(0, 15px, 0);
      opacity: 0;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0), 0 0 0 0 rgba(232, 25, 44, 0);
    }
    40% {
      opacity: 0.8;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 12px 2px var(--color-primary, #e8192c);
    }
    to {
      transform: translate3d(0, 0, 0);
      opacity: 1;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(232, 25, 44, 0);
    }
  }
  @-webkit-keyframes fadeInUp {
    from {
      -webkit-transform: translate3d(0, 15px, 0);
      opacity: 0;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0), 0 0 0 0 rgba(232, 25, 44, 0);
    }
    40% {
      opacity: 0.8;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 12px 2px var(--color-primary, #e8192c);
    }
    to {
      -webkit-transform: translate3d(0, 0, 0);
      opacity: 1;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(232, 25, 44, 0);
    }
  }

  /* Replace bounceInUp with a smooth slide-up fade + soft entrance glow (no bouncy overshoot) */
  @keyframes bounceInUp {
    from {
      transform: translate3d(0, 20px, 0);
      opacity: 0;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0), 0 0 0 0 rgba(232, 25, 44, 0);
    }
    40% {
      opacity: 0.8;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 12px 2px var(--color-primary, #e8192c);
    }
    to {
      transform: translate3d(0, 0, 0);
      opacity: 1;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(232, 25, 44, 0);
    }
  }
  @-webkit-keyframes bounceInUp {
    from {
      -webkit-transform: translate3d(0, 20px, 0);
      opacity: 0;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0), 0 0 0 0 rgba(232, 25, 44, 0);
    }
    40% {
      opacity: 0.8;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 12px 2px var(--color-primary, #e8192c);
    }
    to {
      -webkit-transform: translate3d(0, 0, 0);
      opacity: 1;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(232, 25, 44, 0);
    }
  }
}



