/*
Theme Name: Hox Karate
Theme URI: https://example.com/hox-karate
Author: Hoximoxin info tech pvt.ltd
Author URI: https://example.com
Description: A premium, highly customizable, and responsive WordPress theme for Karate & Martial Arts schools with full Elementor page builder support.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hox-karate
Tags: custom-colors, custom-menu, custom-logo, theme-options, translation-ready, elementor
*/

/* -------------------------------------------------------------
   DESIGN SYSTEM & VARIABLES
------------------------------------------------------------- */
:root {
  --primary-color: #d30215;
  --primary-hover: #b00111;
  --primary-rgb: 211, 2, 21;
  --secondary-color: #141517;
  --bg-dark: #141517;
  --bg-dark-secondary: #1a1b1e;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --text-dark: #111111;
  --text-muted: #666666;
  --text-light: #dddddd;
  --border-color: #e9ecef;
  --border-dark: #2c2e33;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  --box-shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.12);
  --container-width: 1200px;
}

/* -------------------------------------------------------------
   RESET & BASE STYLES
------------------------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

#page {
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6,
.elementor-widget-heading h1,
.elementor-widget-heading h2,
.elementor-widget-heading h3,
.elementor-widget-heading h4,
.elementor-widget-heading h5,
.elementor-widget-heading h6,
.elementor-heading-title,
.hox-hero-title-new,
.section-main-title {
  font-family: 'Outfit', sans-serif !important;
  color: var(--text-dark);
  font-weight: 500 !important;
  line-height: 1.2;
  margin-bottom: 1rem;
}

button,
input[type="button"],
input[type="submit"],
.btn,
.hox-hero-btn-new,
.hox-header-btn,
.elementor-button {
  font-family: 'Outfit', sans-serif !important;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* -------------------------------------------------------------
   UTILITIES & LAYOUT
------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 8rem 0;
}

.bg-light-sec {
  background-color: var(--bg-light);
}

.bg-dark-sec {
  background-color: var(--bg-dark);
  color: var(--bg-white);
}

.bg-dark-sec h1,
.bg-dark-sec h2,
.bg-dark-sec h3,
.bg-dark-sec h4 {
  color: var(--bg-white);
}

/* Section Titles */
.section-title-wrapper {
  text-align: center;
  margin-bottom: 4.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 2px;
  background-color: var(--primary-color);
}

.section-main-title {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.text-left-align {
  text-align: left;
  margin-left: 0;
  max-width: 100%;
}

.text-left-align .section-subtitle {
  padding-left: 0;
}
.text-left-align .section-subtitle::before {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary:hover {
  color: var(--bg-white);
  border-color: var(--secondary-color);
}

.btn-outline {
  border-color: var(--primary-color);
  color: var(--text-dark);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.btn-dark {
  background-color: var(--bg-white);
  color: var(--text-dark);
}

.btn-dark:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

/* -------------------------------------------------------------
   HEADER & NAVIGATION
------------------------------------------------------------- */
.top-bar {
  background-color: var(--secondary-color);
  color: var(--text-light);
  font-size: 0.8rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-dark);
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  gap: 2rem;
}

.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-info i {
  color: var(--primary-color);
}

.top-bar-socials {
  display: flex;
  gap: 1.25rem;
}

.top-bar-socials a:hover {
  color: var(--primary-color);
}

/* Navbar */
.site-header {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  transition: var(--transition-smooth);
}

.site-header.is-sticky {
  position: fixed;
  top: 0;
  background-color: var(--bg-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  animation: slideDown 0.3s forwards;
}

.site-header.is-sticky .nav-link {
  color: var(--text-dark);
}

.site-header.is-sticky .logo-text {
  color: var(--text-dark);
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: var(--bg-white);
  font-size: 1.25rem;
  font-weight: 800;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -1px;
}

.logo-text span {
  color: var(--primary-color);
}

.site-header:not(.is-sticky) .logo-text {
  color: var(--bg-white);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--bg-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 0;
  display: block;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-item.current-menu-item .nav-link::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.search-trigger {
  font-size: 1.2rem;
  color: var(--bg-white);
  cursor: pointer;
  transition: var(--transition-smooth);
  background: none;
  border: none;
}

.site-header.is-sticky .search-trigger {
  color: var(--text-dark);
}

.search-trigger:hover {
  color: var(--primary-color);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
}

.site-header:not(.is-sticky) .menu-toggle {
  color: var(--bg-white);
}

/* -------------------------------------------------------------
   HERO SECTION
------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-dark);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding-top: 100px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(20, 21, 23, 0.95) 30%, rgba(20, 21, 23, 0.4) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 2rem;
}

.hero-content {
  color: var(--bg-white);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s 0.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-subtitle {
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: block;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 2rem;
  color: var(--bg-white);
}

.hero-title span {
  display: block;
  font-size: 5rem;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.8);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-image-pane {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.hero-bg-outline {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.1;
  font-size: 35rem;
  font-weight: 900;
  color: var(--bg-white);
  user-select: none;
  pointer-events: none;
  z-index: -1;
  font-family: var(--font-heading);
}

/* -------------------------------------------------------------
   ABOUT SECTION
------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-images-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-main {
  width: 75%;
  border-radius: 30px;
  box-shadow: var(--box-shadow);
  transform: translateX(-10%);
}

.about-img-sub {
  position: absolute;
  width: 50%;
  bottom: -40px;
  right: 0;
  border-radius: 30px;
  border: none !important;
  box-shadow: var(--box-shadow-hover);
  z-index: 2;
}

.about-bullets {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-bullet-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.about-bullet-item i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.about-footer {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 3rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.about-founder {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.founder-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.founder-name h4 {
  margin-bottom: 0.1rem;
  font-size: 1.05rem;
}

.founder-name p {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 600;
}

/* -------------------------------------------------------------
   CLASSES SECTION
------------------------------------------------------------- */
.classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.class-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition-smooth);
  position: relative;
}

.class-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.class-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.class-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.class-card:hover .class-img-wrapper img {
  transform: scale(1.1);
}

.class-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(20, 21, 23, 0.9) 0%, rgba(20, 21, 23, 0) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.class-card:hover .class-overlay {
  opacity: 1;
}

.class-overlay-content {
  color: var(--bg-white);
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.class-card:hover .class-overlay-content {
  transform: translateY(0);
}

.class-overlay-content h4 {
  color: var(--bg-white);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.class-info-bar {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-color);
}

.class-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0;
}

.class-link {
  width: 40px;
  height: 40px;
  background-color: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.class-card:hover .class-link {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

/* -------------------------------------------------------------
   SPECIAL PROGRAM
------------------------------------------------------------- */
.program-section-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.program-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.program-feature-card {
  background-color: var(--bg-white);
  padding: 2.25rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  border-bottom: 3px solid transparent;
  transition: var(--transition-smooth);
}

.program-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
  border-bottom-color: var(--primary-color);
}

.program-icon-box {
  width: 60px;
  height: 60px;
  background-color: rgba(211, 2, 21, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.program-feature-card:hover .program-icon-box {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.program-feature-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.program-feature-card p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* -------------------------------------------------------------
   CTA BANNER (WIDE)
------------------------------------------------------------- */
.cta-banner {
  background-color: var(--bg-dark);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 8rem 0;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 21, 23, 0.75);
  z-index: 1;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  color: var(--bg-white);
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner-content h2 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--bg-white);
  margin-bottom: 1.5rem;
}

/* -------------------------------------------------------------
   CLASS SCHEDULE
------------------------------------------------------------- */
.schedule-tabs-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.schedule-tab-btn {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  padding: 0.8rem 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.schedule-tab-btn.is-active,
.schedule-tab-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--bg-white);
}

.schedule-pane {
  display: none;
}

.schedule-pane.is-active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

.schedule-table-wrapper {
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background-color: var(--bg-white);
}

.schedule-table th,
.schedule-table td {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-color);
}

.schedule-table th {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.schedule-table tr:last-child td {
  border-bottom: none;
}

.schedule-time {
  font-weight: 700;
  color: var(--text-dark);
}

.schedule-class {
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-size: 1.1rem;
}

.schedule-instructor {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.schedule-inst-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

/* -------------------------------------------------------------
   WHY CHOOSE US
------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.why-benefits {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2.5rem 0;
}

.why-benefit-card {
  display: flex;
  gap: 1.5rem;
  background-color: var(--bg-white);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid transparent;
  box-shadow: var(--box-shadow);
  transition: var(--transition-smooth);
}

.why-benefit-card:hover {
  transform: translateX(10px);
  border-left-color: var(--primary-color);
  box-shadow: var(--box-shadow-hover);
}

.why-benefit-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-top: 0.25rem;
}

.why-benefit-content h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.why-benefit-content p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.why-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-img-circle {
  border-radius: 50%;
  width: 420px;
  height: 420px;
  object-fit: cover;
  border: 15px solid var(--bg-light);
  box-shadow: var(--box-shadow-hover);
}

.why-badge-overlay {
  position: absolute;
  top: 15%;
  left: 5%;
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--box-shadow-hover);
  animation: bounce 3s infinite ease-in-out;
}

.why-badge-overlay span {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.why-badge-overlay p {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: 1px;
}

/* -------------------------------------------------------------
   PHOTO GALLERY
------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.gallery-left-tall {
  height: 100%;
}

.gallery-right-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 250px;
}

.gallery-left-tall .gallery-item {
  height: 515px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(211, 2, 21, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item-overlay i {
  color: var(--bg-white);
  font-size: 2rem;
  transform: scale(0.5);
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-item-overlay i {
  transform: scale(1);
}

/* -------------------------------------------------------------
   ACHIEVEMENTS COUNTER
------------------------------------------------------------- */
.achievements-section {
  background-color: var(--secondary-color);
  padding: 6rem 0;
  position: relative;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.counter-card {
  color: var(--bg-white);
}

.counter-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--bg-white);
}

.counter-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 1px;
  font-weight: 600;
}

/* -------------------------------------------------------------
   COACHES & TEAM
------------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.team-card {
  text-align: center;
  background-color: var(--bg-white);
  padding: 3rem 2rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.team-img-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--border-color);
  transition: var(--transition-smooth);
}

.team-card:hover .team-img-wrapper {
  border-color: var(--primary-color);
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-socials-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 21, 23, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

.team-img-wrapper:hover .team-socials-overlay {
  opacity: 1;
}

.team-socials-overlay a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.team-socials-overlay a:hover {
  background-color: var(--bg-white);
  color: var(--primary-color);
}

.team-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-info p {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* -------------------------------------------------------------
   LATEST NEWS / BLOG
------------------------------------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.blog-img-box {
  height: 220px;
  overflow: hidden;
}

.blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-box img {
  transform: scale(1.08);
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-meta i {
  font-size: 0.9rem;
}

.blog-title {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 1.25rem;
}

.blog-title a:hover {
  color: var(--primary-color);
}

.blog-readmore {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-dark);
}

.blog-readmore:hover {
  color: var(--primary-color);
}

/* -------------------------------------------------------------
   GET IN TOUCH / CONTACT
------------------------------------------------------------- */
.contact-section-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
}

.contact-lead-image {
  border-radius: 8px;
  box-shadow: var(--box-shadow-hover);
  margin-top: 2rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.contact-detail-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-detail-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-detail-text p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.contact-form-box {
  background-color: var(--bg-white);
  padding: 3.5rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow-hover);
}

.contact-form-box h3 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--primary-color);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(211, 2, 21, 0.1);
}

textarea.form-input {
  height: 150px;
  resize: none;
}

/* -------------------------------------------------------------
   FOOTER
------------------------------------------------------------- */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 6rem 0 2rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-widget-title {
  font-size: 1.25rem;
  color: var(--bg-white);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-widget p {
  margin-bottom: 1.5rem;
}

.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.footer-newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background-color: var(--bg-dark-secondary);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  color: var(--bg-white);
}

.footer-newsletter-input:focus {
  border-color: var(--primary-color);
}

.footer-newsletter-btn {
  background-color: var(--primary-color);
  color: var(--bg-white);
  border: none;
  padding: 0 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.footer-newsletter-btn:hover {
  background-color: var(--primary-hover);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links-list a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
}

.footer-links-list a::before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-color);
  font-size: 0.8rem;
  transition: var(--transition-smooth);
}

.footer-links-list a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 0.25rem;
}

.copyright-bar {
  border-top: 1px solid var(--border-dark);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.copyright-bar a:hover {
  color: var(--primary-color);
}

/* -------------------------------------------------------------
   MODAL (FREE TRIAL BOOKING FORM)
------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 21, 23, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  padding: 1.5rem;
}

.modal-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: var(--bg-white);
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: translateY(-50px);
  transition: var(--transition-smooth);
}

.modal-overlay.is-active .modal-content {
  transform: translateY(0);
}

.modal-header {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  padding: 2rem;
  position: relative;
}

.modal-header h3 {
  color: var(--bg-white);
  margin-bottom: 0.25rem;
  font-size: 1.5rem;
}

.modal-header p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.modal-close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--bg-white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  color: var(--primary-color);
}

.modal-body {
  padding: 2.5rem;
}

.modal-response-msg {
  display: none;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.modal-response-msg.is-success {
  display: block;
  background-color: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.modal-response-msg.is-error {
  display: block;
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.2);
}

/* -------------------------------------------------------------
   ANIMATIONS & EFFECTS
------------------------------------------------------------- */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Scroll Animation Hooks */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------------------------
   RESPONSIVE MEDIA QUERIES
------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-title span {
    font-size: 4rem;
  }
  .about-grid, .why-grid, .program-section-grid, .contact-section-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-img-main {
    transform: translateX(0);
    width: 80%;
  }
  .about-img-sub {
    width: 45%;
  }
  .classes-grid, .team-grid, .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .site-header {
    top: 0;
  }
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-dark);
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 1.5rem;
    align-items: flex-start;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-dark);
  }
  .nav-menu.is-active {
    left: 0;
  }
  .nav-link {
    color: var(--bg-white) !important;
    font-size: 1.2rem;
  }
  .hero-container {
    grid-template-columns: 1fr;
  }
  .hero-image-pane {
    display: none;
  }
  .hero-bg-outline {
    display: none;
  }
  .hero-title {
    font-size: 2.75rem;
  }
  .hero-title span {
    font-size: 3rem;
  }
  .cta-banner-content h2 {
    font-size: 2.25rem;
  }
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-left-tall .gallery-item {
    height: 300px;
  }
  .gallery-right-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .why-img-circle {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 480px) {
  .classes-grid, .team-grid, .blog-grid, .achievements-grid {
    grid-template-columns: 1fr;
  }
  .section-main-title {
    font-size: 2rem;
  }
  .schedule-table th, .schedule-table td {
    padding: 1rem;
  }
  .schedule-time {
    font-size: 0.8rem;
  }
  .schedule-class {
    font-size: 0.95rem;
  }
  .schedule-instructor {
    font-size: 0.8rem;
  }
  .why-badge-overlay {
    padding: 1rem;
  }
  .why-badge-overlay span {
    font-size: 1.5rem;
  }
}

/* -------------------------------------------------------------
   PREMIUM HERO SECTION & HEADER REDESIGN (MATCHES SCREENSHOT)
------------------------------------------------------------- */
.hox-premium-hero {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hox-hero-top-block {
  position: relative;
  padding: 50px 0 0;
  background-color: #ffffff;
}

.hox-hero-nunchuck-sketch {
  position: absolute;
  top: 50px;
  left: 6%;
  width: 90px;
  height: 90px;
  opacity: 0.15;
  pointer-events: none;
}

.hox-hero-fighter-outline {
  position: absolute;
  right: 8%;
  top: 10px;
  width: 480px;
  height: 480px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

.hox-hero-text-container {
  position: relative;
  z-index: 2;
}

.hox-hero-text-content {
  max-width: 800px;
  position: relative;
}

.hox-hero-subtitle-new {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.hox-hero-subtitle-new .red-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: inline-block;
}

.hox-hero-title-new {
  font-family: var(--font-heading);
  font-size: 3.5rem; /* Reduced to fit clean 2-line layout without being oversized */
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 30px;
  text-transform: none;
}

.hox-hero-title-new span {
  display: block;
  color: var(--text-dark);
}

.hox-hero-btn-new {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: var(--primary-color);
  color: #ffffff !important;
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: none;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(211, 2, 21, 0.25);
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.hox-hero-btn-new:hover {
  background-color: var(--secondary-color);
  color: #ffffff !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hox-arrow-circle {
  width: 26px;
  height: 26px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.75rem;
  transition: var(--transition-smooth);
}

.hox-hero-btn-new:hover .hox-arrow-circle {
  background-color: var(--primary-color);
}

/* Sparring Photo Block */
.hox-hero-sparring-block {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hox-hero-sparring-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Default SVG sketches fallback style */
.hox-hero-nunchuck-sketch svg,
.hox-hero-fighter-outline svg {
  width: 100%;
  height: 100%;
  display: block;
}

.default-nunchuck-svg {
  opacity: 0.15;
}
.default-fighter-svg {
  opacity: 0.12;
}

/* Header Redesign & Colors */
.site-header {
  position: relative !important; /* Static/relative on subpages to naturally position content */
  top: 0 !important;
  background-color: #ffffff !important;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition-smooth);
}

.home .site-header {
  position: absolute !important; /* Floating absolute on homepage hero */
  background-color: transparent !important;
  border-bottom: none !important;
}

.site-header.is-sticky {
  position: fixed !important;
  background-color: #ffffff !important;
  border-bottom: 1px solid rgba(0,0,0,0.05) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  top: 0 !important;
}

.hox-header-spacer {
  height: 0 !important;
  display: none !important;
}

@media (max-width: 1024px) {
  .site-header {
    position: fixed !important;
    height: 70px !important;
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
  }
  .hox-header-spacer {
    height: 70px !important;
    display: block !important;
    background-color: #ffffff !important;
  }
}

.top-bar {
  display: none !important; /* Hide top bar to match the clean white-only header screenshot */
}

.site-header:not(.is-sticky) .nav-link {
  color: var(--text-dark) !important;
}

.site-header:not(.is-sticky) .logo-text {
  color: var(--text-dark) !important;
}

.site-header:not(.is-sticky) .menu-toggle {
  color: var(--text-dark) !important;
}

.hox-header-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--primary-color);
  color: #ffffff !important;
  padding: 8px 20px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.hox-header-btn:hover {
  background-color: var(--secondary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hox-header-btn .hox-arrow-circle {
  width: 26px;
  height: 26px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.7rem;
  transition: var(--transition-smooth);
}

.hox-header-btn:hover .hox-arrow-circle {
  background-color: var(--primary-color);
  transform: rotate(45deg);
}

.hox-cart-icon {
  position: relative;
  font-size: 1.3rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-right: 15px;
  transition: var(--transition-smooth);
}

.hox-cart-icon:hover {
  color: var(--primary-color);
}

.hox-cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary-color);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsiveness overrides for premium hero */
@media (max-width: 991px) {
  .hox-hero-title-new {
    font-size: 2.8rem;
  }
  .hox-hero-fighter-outline {
    width: 320px;
    height: 320px;
    right: 2%;
  }
}

@media (max-width: 767px) {
  .hox-premium-hero {
    padding-top: 70px !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    width: auto !important;
  }
  .hox-hero-top-block {
    padding: 30px 0 0 !important; /* Down padding 0 to fit with sparring image, top 30px */
  }
  .hox-hero-title-new {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
  .hox-hero-fighter-outline {
    display: block !important; /* Show outline sketch on small viewports */
    width: 220px !important;
    height: 220px !important;
    right: -20px !important;
    top: auto !important;
    bottom: 0 !important;
    opacity: 0.08 !important;
    z-index: 1 !important;
  }
  .hox-hero-nunchuck-sketch {
    display: block !important;
    width: 65px !important;
    height: 65px !important;
    left: 4% !important;
    top: 10px !important;
    opacity: 0.1 !important;
    z-index: 1 !important;
  }
  .hox-header-btn {
    display: none; /* Hide header btn on mobile, user can click menu */
  }
}

/* -------------------------------------------------------------
   PREMIUM ABOUT SECTION (MATCHES SCREENSHOT)
------------------------------------------------------------- */
.hox-premium-about {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.hox-about-sketch-left {
  position: absolute;
  bottom: 5%;
  left: 2%;
  opacity: 0.15;
  pointer-events: none;
}

.hox-about-sketch-right {
  position: absolute;
  top: 5%;
  right: 2%;
  opacity: 0.15;
  pointer-events: none;
}

.hox-about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Image Composition */
.hox-about-images-block {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 520px;
}

.hox-about-img-main {
  width: 70%;
  height: 480px;
  object-fit: cover;
  border-radius: 30px !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  margin-left: auto;
}

.hox-about-img-sub {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 350px;
  object-fit: cover;
  border-radius: 30px !important;
  border: none !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Right Content Block */
.hox-about-content-block {
  display: flex;
  flex-direction: column;
}

.hox-about-subtitle-new {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.hox-about-subtitle-new .red-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: inline-block;
}

.hox-about-title-new {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 500 !important;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.hox-about-desc-new {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 35px;
}

/* Middle: Bullets & Side Image */
.hox-about-middle-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
}

.hox-about-bullets-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.hox-about-bullets-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-dark);
}

.hox-bullet-check {
  color: var(--primary-color);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
}

.hox-bullet-txt {
  line-height: 1.3;
}

.hox-about-kicking-img {
  width: 100%;
  height: auto;
  border-radius: 20px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Fallback/Forced border radius for all About section images */
.hox-premium-about img,
#about img,
.about-section img {
  border-radius: 30px !important;
}
.hox-premium-about .hox-about-kicking-img,
#about .hox-about-kicking-img {
  border-radius: 20px !important;
}

/* Footer Help/Button Bar */
.hox-about-footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f7f9fa;
  padding: 24px 32px;
  border-radius: 16px;
  gap: 20px;
}

.hox-about-help-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hox-help-phone-icon {
  width: 52px;
  height: 52px;
  background-color: var(--text-dark);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.hox-help-phone-txt {
  display: flex;
  flex-direction: column;
}

.hox-help-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hox-help-number {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.hox-help-number:hover {
  color: var(--primary-color);
}

.hox-about-btn-new {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: var(--primary-color);
  color: #ffffff !important;
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(211, 2, 21, 0.2);
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.hox-about-btn-new:hover {
  background-color: var(--secondary-color);
  color: #ffffff !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hox-about-arrow-circle {
  width: 26px;
  height: 26px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.75rem;
  transition: var(--transition-smooth);
}

.hox-about-btn-new:hover .hox-about-arrow-circle {
  transform: rotate(45deg);
}

/* Responsiveness overrides for premium about */
@media (max-width: 991px) {
  .hox-about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hox-about-images-block {
    height: 480px;
    max-width: 600px;
    margin: 0 auto;
  }
  .hox-about-img-main {
    height: 440px;
  }
  .hox-about-img-sub {
    height: 320px;
  }
  .hox-about-title-new {
    font-size: 2.8rem;
  }
}

@media (max-width: 767px) {
  .hox-about-images-block {
    height: 380px;
  }
  .hox-about-img-main {
    height: 340px;
  }
  .hox-about-img-sub {
    height: 240px;
  }
  .hox-about-title-new {
    font-size: 2.3rem;
  }
  .hox-about-middle-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hox-about-kicking-col {
    max-width: 320px;
  }
  .hox-about-footer-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  .hox-about-btn-new {
    width: 100%;
    justify-content: center;
  }
  .hox-about-sketch-left,
  .hox-about-sketch-right {
    display: none !important;
  }
}

/* -------------------------------------------------------------
   MOBILE RESPONSIVE & HEADER OVERRIDES
------------------------------------------------------------- */
@media (max-width: 1024px) {
  /* Header & Navigation Fixes */
  .site-header {
    height: 70px !important;
    display: flex;
    align-items: center;
    position: fixed !important;
    top: 0 !important;
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
  }

  .navbar {
    padding: 0 1.5rem !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  /* Flex order to arrange logo left, toggle right */
  .site-logo {
    order: 1 !important;
  }
  
  .header-actions {
    display: none !important;
  }

  .main-navigation {
    order: 2 !important;
    margin-left: auto !important;
    display: flex !important;
    align-items: center !important;
  }

  .logo-link img {
    max-height: 36px !important;
  }

  .logo-icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 1rem !important;
  }

  .logo-text {
    font-size: 1.4rem !important;
  }



  /* Mobile menu button styles */
  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 1.3rem !important;
    color: var(--text-dark) !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    padding: 0 !important;
  }

  /* Slide-out Menu Panel styling */
  .nav-menu-wrapper {
    position: static !important;
  }

  .nav-menu {
    position: fixed !important;
    top: 70px !important;
    left: -100% !important;
    width: 100% !important;
    height: calc(100vh - 70px) !important;
    background-color: var(--bg-dark) !important;
    flex-direction: column !important;
    padding: 2rem 1.5rem !important;
    gap: 0 !important;
    align-items: flex-start !important;
    transition: var(--transition-smooth) !important;
    border-top: 1px solid var(--border-dark) !important;
    z-index: 9999 !important;
    box-shadow: none !important;
    overflow-y: auto !important;
  }

  .nav-menu.is-active {
    left: 0 !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3) !important;
  }

  .nav-menu li {
    width: 100% !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding-bottom: 0 !important;
  }

  .nav-menu li:last-child {
    border-bottom: none !important;
  }

  .nav-menu .nav-link {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    padding: 1rem 0 !important;
    width: 100% !important;
    text-align: left !important;
  }

  .nav-menu .nav-link::after {
    display: none !important; /* Hide active underline on mobile */
  }

  .nav-menu .nav-link:hover {
    color: var(--primary-color) !important;
    padding-left: 5px !important;
  }
}

@media (max-width: 768px) {
  /* Content Columns Grid Overrides */
  .classes-grid, 
  .team-grid, 
  .blog-grid,
  .about-grid, 
  .why-grid, 
  .program-section-grid, 
  .contact-section-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  /* Adjust padding of section containers & boxes */
  .section-padding {
    padding: 4rem 0 !important;
  }

  .contact-form-box {
    padding: 1.5rem !important;
  }

  .section-main-title {
    font-size: 2rem !important;
  }
}

@media (max-width: 480px) {
  .hox-hero-title-new {
    font-size: 2.2rem !important;
    line-height: 1.25 !important;
    margin-bottom: 25px !important;
  }

  .hox-about-title-new {
    font-size: 1.8rem !important;
    line-height: 1.3 !important;
  }

  .section-main-title {
    font-size: 1.7rem !important;
  }

  .counter-number {
    font-size: 2.5rem !important;
  }
}

/* Tablet Landscape & Small Laptop Optimization (1025px to 1250px) */
@media (min-width: 1025px) and (max-width: 1250px) {
  .nav-menu {
    gap: 1.25rem !important;
  }
  .nav-link {
    font-size: 0.85rem !important;
  }
  .logo-text {
    font-size: 1.45rem !important;
  }
  .logo-icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 1rem !important;
  }
  .hox-header-btn {
    padding: 8px 16px !important;
    font-size: 0.85rem !important;
    gap: 8px !important;
  }
  .hox-header-btn .hox-arrow-circle {
    width: 22px !important;
    height: 22px !important;
    font-size: 0.65rem !important;
  }
}

/* Floating WhatsApp Button */
.hox-whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #ffffff !important;
  border-radius: 50px;
  text-align: center;
  font-size: 34px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hox-whatsapp-float:hover {
  transform: scale(1.15) rotate(8deg);
  background-color: #128c7e;
  box-shadow: 0 8px 25px rgba(18, 140, 126, 0.5);
  color: #ffffff !important;
}

/* Pulse effect */
.hox-whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25d366;
  opacity: 0.5;
  z-index: -1;
  animation: hox-wa-pulse 2s infinite;
}

@keyframes hox-wa-pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .hox-whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 28px;
  }
}


