/* -------------------------------------------------------
   GLOBAL RESET
--------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  padding-top: var(--navbar-height);
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
/* -------------------------------------------------------
   NAVBAR
--------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
nav {
  height: var(--navbar-height);
  overflow: visible;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
nav .nav-links a {
  margin-left: var(--space-lg);
  font-size: var(--text-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-dark);
  transition: color var(--transition);
}
nav .nav-links a:hover {
  color: var(--color-primary);
}
nav a.btn-primary:hover {
  color: var(--color-secondary);
}

nav .btn-primary {
  margin-left: var(--space-lg);
}
nav .btn-outline{
border:2px solid var(--color-primary) !important;
}
.logo {
  align-self: flex-start;
}
.logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
  /*box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);*/
}
.logo img {
  width: 96px;
  display: block;
}
/* FULLSCREEN MOBILE MENU OVERLAY */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.89);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  z-index: 99999 !important;
}
/* SHOW THE MENU */
.mobile-menu-overlay.show {
  opacity: 1;
  visibility: visible;
}
/* LINKS INSIDE OVERLAY */
.mobile-menu-overlay a {
  color: #fff;
  font-size: var(--text-md);
  text-align: center;
  display: block;
  font-weight: 600;
}
/* Buttons inside overlay */
.mobile-menu-overlay .btn {
  font-size: 1.2rem;
  padding: 12px 30px;
}
.mobile-menu-overlay .btn-outline{
border:2px solid var(--color-primary) !important;
}

/* HAMBURGER BUTTON ON MOBILE ONLY */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--color-text-dark);
  z-index: 100000;
}
.mobile-menu-btn i {
  color: var(--color-secondary);
}
.mobile-menu-btn i.ri-close-line {
  color: var(--color-primary) !important;
}
@media (max-width: 768px) {
  nav .nav-links {
    display: none;
  }
  .mobile-menu-btn, .mobile-menu-btn i.ri-close-line {
    display: block
  }
  .mobile-menu-btn i.ri-close-line {
    position: relative;
    top: -5px;
  }
}
/* -------------------------------------------------------
   BUTTONS
--------------------------------------------------------*/
.btn {
  display: inline-block;
  padding: var(--btn-padding);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  border-radius: var(--btn-radius);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-color);
font-weight:var(--font-weight-bold);
}
.btn-primary:hover {
  background: var(--btn-primary-hover);
}
.btn-outline {
  border: 2px solid var(--btn-outline-border);
  color: var(--btn-outline-color);
font-weight:var(--font-weight-bold);
}
.btn-outline:hover {
  background: rgba(255, 196, 19, 0.15);
}
/* -------------------------------------------------------
   HERO SECTION
--------------------------------------------------------*/
.hero {
  position: relative;
  width: 100%;
  padding: 180px 0;
  background-size: cover;
  background-position: center;
  background-image: url('../../assets/images/image-hero.jpg');
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay-color);
  z-index: 1 !important;
}
.hero .content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--hero-text-color);
  max-width: 700px;
  margin: 0 auto;
}
.hero h1 {
  font-size: var(--text-xxl);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-extrabold);
  line-height: 1.2;
}
.hero h1 span {
  color: var(--color-primary);
}
.hero p {
  margin-top: var(--space-md);
  font-size: var(--text-lg);
  color: #f1f1f1;
}
.hero .actions {
  margin-top: var(--space-xl);
  display: flex;
  justify-content: center;
  gap: var(--hero-button-gap);
}
.hero-stats {
  margin-top: var(--space-xl);
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  font-size: var(--text-md);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}
.hero-stats div span {
  display: block;
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}
/* -------------------------------------------------------
   WHY CHOOSE US
--------------------------------------------------------*/
.why-choose {
    padding: var(--section-padding-lg) 0;
}
.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: var(--text-xl);
  font-family: var(--font-heading);
}
.section-title span {
  color: var(--color-primary);
}
/* -------------------------------------------------------
   FOR TRAINERS / FOR MEMBERS CARDS
--------------------------------------------------------*/
.tj-audience-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}
.tj-audience-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--card-bg);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform var(--transition);
}
.tj-audience-card:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}
.tj-audience-card:nth-child(even) .tj-audience-image-wrap {
  order: 2;
}
.tj-audience-card:hover {
  transform: translateY(-6px);
}
.tj-audience-image-wrap {
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tj-audience-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.tj-audience-content {
  display: flex;
  flex-direction: column;
  padding: var(--card-padding);
}
.tj-audience-content h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}
.tj-audience-content p {
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}
.tj-audience-content p a {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
}
.tj-audience-content > p:last-child {
  margin-top: auto;
  margin-bottom: 0;
}
.tj-audience-list {
  list-style: none;
  padding: 0;
  margin: var(--space-sm) 0;
}
.tj-audience-list li {
  padding: 6px 0 6px 26px;
  position: relative;
  color: var(--color-text);
}
.tj-audience-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
}
@media (max-width: 700px) {
  .tj-audience-card,
  .tj-audience-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .tj-audience-card:nth-child(even) .tj-audience-image-wrap {
    order: 0;
  }
  .tj-audience-image-wrap {
    height: 220px;
  }
}
@media (max-width: 900px) {
  .tj-audience-grid {
    grid-template-columns: 1fr;
  }
}
/* -------------------------------------------------------
   CLASSES SECTION
--------------------------------------------------------*/
.classes {
    padding: var(--section-padding-lg) 0;
  background:#f8f8f8;
}
.class-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  max-width: 700px;
  margin: 0 auto;
}
.class-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  padding: var(--card-padding);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
}
.class-card .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  white-space: nowrap;
}
.class-card .title span.coach {
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-light);
  display: block;
}
.class-card .status {
  flex-shrink: 0;
  font-size: var(--text-xs);
  background: var(--color-primary);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}
.class-card-footer {
  margin-top: var(--space-sm);
  display: flex;
  flex-direction: column;
}
.class-card .meta {
  font-size: var(--text-base);
  color: var(--color-text-light);
}
.class-card .btn {
  margin-top: var(--space-md);
  width: 100%;
  text-align: center;
}
.class-card i {
  font-size: var(--text-sm);
  color: var(--color-primary);
}
/* -------------------------------------------------------
   ABOUT US
--------------------------------------------------------*/
.tj-about-section {
      padding: var(--section-padding-lg) 0;
    background: #ffffff;
}
.tj-about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
/* IMAGE */
.tj-about-image img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
/* CONTENT */
.tj-about-title {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #111;
}
.tj-about-title span {
    color: var(--color-primary);
}
.tj-about-text {
    font-size: var(--text-base);
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--color-text);
}
.tj-about-text a {
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
}
.tj-about-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.tj-about-features li {
    font-size: var(--text-base);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    padding: 6px 0;
}
.tj-about-features li i {
    color: var(--color-primary);
    margin-right: 10px;
}
/* STATS */
.tj-about-stats {
    display: flex;
    gap: 40px;
    margin: 25px 0;
}
.tj-about-stat h3 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin: 0;
}
.tj-about-stat p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}
/* BUTTON */
.tj-about-btn {
    display: inline-block;
    background: #FFC400;
    color: #111;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 10px;
    transition: 0.3s;
}
.tj-about-btn:hover {
    background: #e7b200;
}
/* RESPONSIVE */
@media (max-width: 900px) {
    .tj-about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tj-about-stats {
        justify-content: center;
        gap: 20px;
    }
}
/* -------------------------------------------------------
   BUILT FOR CHAMPIONS
--------------------------------------------------------*/
.champions {
  background: var(--color-secondary);
  padding: var(--section-padding-lg) 0;
  color: #fff;
}
.champions .section-title {
  color: #fff;
}
.champions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.champ-card {
  padding: var(--card-padding);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--color-primary);
  transition: transform var(--transition), background var(--transition);
}
.champ-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.14);
}
.champ-card h4 {
  margin-bottom: var(--space-sm);
  font-size: var(--text-md);
}
.champ-card i {
  font-size: 1.8rem;
  color: var(--color-primary);
  display: inline-block;
  margin-bottom: var(--space-sm);
}
/**************************
FAQ
*********************/
/* FAQ Section */
.faq-section {
    padding: var(--section-padding-lg) 28px;
}
.faq-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
.faq-section .section-title span {
  color: var(--color-primary-yellow, #FFC815);
}
.faq-list {
  max-width: 800px;
  margin: auto;
}
.faq-item {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 1.35rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  padding: 12px 0;
  transition: color 0.3s ease;
}
.faq-question.active {
  color: #FFC815; /* yellow highlight */
}
.faq-icon {
  font-size: 1.6rem;
  transition: transform 0.3s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 1.15rem;
  color: #444;
  line-height: 1.7;
  transition: max-height 0.3s ease;
  padding-right: 20px;
}
.faq-answer.open {
  padding-top: 10px;
}
/* -------------------------------------------------------
   CHAMBER BADGE + CTA ROW
--------------------------------------------------------*/
.tj-champions-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
@media (max-width: 900px) {
  .tj-champions-bottom {
    grid-template-columns: 1fr;
  }
}
.tj-chamber-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  text-align: left;
}
.tj-chamber-badge img {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}
.tj-chamber-badge p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  max-width: 320px;
  margin: 0;
}
@media (max-width: 480px) {
  .tj-chamber-badge {
    flex-direction: column;
    text-align: center;
  }
}
/* -------------------------------------------------------
   CTA - JOURNEY
--------------------------------------------------------*/
.cta-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
}
.cta-box .btn {
  margin: 0 var(--space-sm);
  margin-top: var(--space-lg);
}
/* -------------------------------------------------------
   FOOTER
--------------------------------------------------------*/
footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: var(--section-padding) 0;
  margin-top: var(--space-xl);
}
footer .footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
}
footer h4 {
  font-size: var(--text-md);
  margin-bottom: var(--space-sm);
}
footer img{
margin-bottom: var(--space-md);
}
footer i {
  font-size: var(--text-md);
  color: var(--color-primary);
}
footer a {
  color: var(--footer-link);
  font-size: var(--text-sm);
  display: block;
  margin-bottom: 6px;
}
footer a:hover {
  color: var(--footer-link-hover);
}
footer .copyright {
  text-align: center;
  border-top: 1px solid var(--footer-border);
  padding-top: var(--space-md);
  font-size: var(--text-sm);
}
/* -------------------------------------------------------
   RESPONSIVE DESIGN
--------------------------------------------------------*/
@media (max-width: 1024px) {
  .class-cards, .champions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stats {
    flex-wrap: wrap;
    text-align: center;
  }
}
@media (max-width: 768px) {
  nav .nav-links {
    display: none; /* You can add mobile dropdown later */
  }
  .hero {
    padding: 140px 0;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .class-cards, .champions-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    flex-direction: column;
    gap: var(--space-xl);
    padding: 0 var(--space-xl);
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}
/* CONTACT PAGE LAYOUT */
.contact-us {
  padding: var(--section-padding) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin-top: 40px;
}
/* CONTACT ITEMS */
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}
.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
/* ORANGE ICON BOX */
.contact-icon-box {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon-box i {
  font-size: 22px;
  color: #fff;
}
/* FORM CARD */
.form-card {
  padding: 32px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}
.form-card h3 {
  margin-bottom: 20px;
}
.form-card label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}
.form-card input, .form-card textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.wpcf7 form input[type="submit"], .wpcf7 form button[type="submit"] {
  margin-top: 20px !important;
}
.form-card span.required{
color: var(--color-danger);
}
/* Mobile: Form first, info second */
.contact-form {
  order: 1;
}
.contact-info {
  order: 2;
}
/* Desktop: Reverse order */
@media (min-width: 992px) {
  .contact-form {
    order: 2;
  }
  .contact-info {
    order: 1;
  }
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 0px 28px;
  }
}
/* Wrapper */
.tj-contact-form {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
/* Labels */
.tj-contact-form label {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text-light);
}
/* Inputs + Textarea */
.tj-contact-form input[type="text"], .tj-contact-form input[type="email"], .tj-contact-form input[type="tel"], .tj-contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  transition: all 0.25s ease;
  background: #fff;
}
.tj-contact-form textarea {
  height: 120px !important;
}
/* Focus state */
.tj-contact-form input:focus, .tj-contact-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 196, 0, 0.25);
  outline: none;
}
/* Error fields */
.tj-contact-form .wpcf7-not-valid {
  border-color: #D32F2F !important;
  background: #FFF5F5 !important;
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.15);
}
/* Error message under fields */
.tj-contact-form .wpcf7-not-valid-tip {
  color: #D32F2F !important;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
}
/* Success Message */
.wpcf7 form.sent .wpcf7-response-output {
  background: #e7fde9 !important;
  color: #0a7a29 !important;
  border-left: 4px solid #0a7a29 !important;
  padding: 14px 18px;
  border-radius: 6px;
  font-weight: 600;
}
/* Error Message (form-level) */
.wpcf7 form.invalid .wpcf7-response-output {
  background: #ffe7e7 !important;
  color: #900 !important;
  border-left: 4px solid #c00 !important;
  padding: 14px 18px;
  border-radius: 6px;
  font-weight: 600;
}
/* Submit Button Styling */
.tj-contact-form input[type="submit"] {
  background: var(--color-primary);
  border: none;
  padding: 16px;
  color: var(--color-secondary);
  font-size: 16px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
  width: auto;
  margin-top: 20px;
}
/* On hover */
.tj-contact-form input[type="submit"]:hover {
  background: #eab800;
}
/* --- OVERLAY BACKDROP --- */
#tj-success-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 999999 !important;
}
/* --- OVERLAY BOX --- */
.tj-overlay-box {
  position: relative;
  text-align: center;
  width: 90%;
  max-width: 420px;
  padding: 40px 30px;
  background: #111;
  border-radius: 10px;
  color: #fff;
}
/* --- CLOSE ICON --- */
.tj-overlay-close {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 30px;
  cursor: pointer;
  color: var(--color-primary);
  transition: 0.2s;
}
.tj-overlay-close:hover {
  color: #FFC400;
}
/* --- SPINNER --- */
.tj-overlay-spinner {
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top: 4px solid var(--color-primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 30px auto;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* --- SUCCESS MESSAGE --- */
.tj-overlay-success {
  display: none;
}
.tj-overlay-success h2 {
  font-size: 28px;
  color: var(--color-primary);
}
.overlay-actions {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.overlay-actions a {
  text-decoration: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
}
/* Hide CF7 success message */
.wpcf7-response-output {
  display: none !important;
}

/********************
404
*********************/
.tj-404 {
    text-align: center;
    padding: 80px 20px;
}
.tj-404 h1 {
    font-size: 80px;
    font-weight: 900;
    color: var(--color-primary);
}
.tj-404 h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 10px;
    color: var(--color-secondary);
}
.tj-404 p {
    margin-top: 12px;
    color: #555;
    font-size: 16px;
}
.tj-404 .btn-group {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
}
.tj-404 a {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}
.tj-404 .btn-primary {
    background: var(--color-primary);
    color: var(--color-secondary);
}

.tj-404 .btn-secondary {
    background: var(--color-secondary);
    color: #FFF;
}
.tj-404 img {
    width: 170px;
    margin: 25px auto;
}
/* PRELOADER */
#tj-preloader {
    position: fixed;
    inset: 0;
    background: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.6s ease;
}
/* Center Content */
.tj-preloader-content {
    text-align: center;
    animation: fadeIn 0.6s ease forwards;
}
/* Pulse Logo Animation + Soft Glow */
.tj-pulse-logo {
    width: 104px;
    animation: pulse 1.6s ease-in-out infinite;
    filter: drop-shadow(0px 0px 12px rgba(255, 196, 0, 0.35));
}
@keyframes pulse {
    0%   { transform: scale(1); opacity: 1; }
    50%  { transform: scale(1.14); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}
/* Loading Text Animation */
.tj-loading-text {
    margin-top: 18px;
    font-size: 18px;
    color:  var(--color-primary);
    font-weight: 600;
    letter-spacing: 0.4px;
    animation: textFade 1.8s ease-in-out infinite;
    text-shadow: 0px 0px 6px rgba(255, 196, 0, 0.35);
    text-align:center !important;
}
@keyframes textFade {
    0%   { opacity: 0.5; }
    50%  { opacity: 1; }
    100% { opacity: 0.5; }
}
/* Smooth fade-in */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}
/*******************************
TERMS & CONDITIONS
*****************************/
.tj-privacy,
.tj-terms-and-conditions {
    padding: 50px 28px;
    background: #fff;
}
.tj-privacy .container,
.tj-terms-and-conditions .container  {
    max-width: 900px;
    margin: 0 auto;
padding:0px;
}
.tj-privacy h1,
.tj-terms-and-conditions h1  {
    font-size: 2.4rem;
    font-weight: 700;
}
.tj-privacy .updated
.tj-terms-and-conditions .updated{
    color: #777;
    margin-bottom: 25px;
    font-size: 0.95rem;
}
.tj-privacy h2,
.tj-terms-and-conditions h2 {
    margin-top: 35px;
    margin-bottom: 10px;
    font-size: 1.35rem;
    font-weight: 700;
}
.tj-privacy p,
.tj-privacy li,
.tj-terms-and-conditions p,
.tj-terms-and-conditions li {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
}
.tj-privacy ul,
.tj-terms-and-conditions ul {
    padding-left: 20px;
}
.tj-privacy .toc li,
.tj-terms-and-conditions .toc li {
    margin-bottom: 6px;
    list-style-position: inside;
}
.tj-privacy .toc a,
.tj-terms-and-conditions .toc a {
    color: #0664ff;
    text-decoration: none;
}
.tj-privacy .toc a:hover,
.tj-terms-and-conditions .toc a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .tj-privacy h1,
.tj-terms-and-conditions h1 {
        font-size: 2rem;
    }
}
