:root {
  --primary: #eb7425;
  --primary-dark: #c85b16;
  --primary-light: #ff8c42;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, rgba(235,116,37,0.04) 0%, #ffffff 40%, rgba(235,116,37,0.03) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(235,116,37,0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  background: linear-gradient(135deg, rgba(235,116,37,0.1), rgba(235,116,37,0.05));
  color: var(--primary);
  border: 1px solid rgba(235,116,37,0.2);
  font-weight: 600;
  padding: 8px 20px;
  backdrop-filter: blur(10px);
}

.hero-section h1 {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(235,116,37,0.3);
}

.btn-outline-secondary {
  border: 2px solid #6c757d;
  transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(108,117,125,0.2);
}

.feature-mini {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.05);
  background: white;
}

.feature-mini:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(235,116,37,0.15);
  border-color: rgba(235,116,37,0.2);
}

.feature-mini i {
  color: var(--primary);
  font-size: 28px;
  transition: transform 0.3s ease;
}

.feature-mini:hover i {
  transform: scale(1.15);
}

/* Stats */
.stat-num {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

/* Cards */
.card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.06);
  background: white;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border-color: rgba(235,116,37,0.15);
}

.card-img-top {
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img-top {
  transform: scale(1.08);
}

.card-body {
  position: relative;
}

.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card:hover::after {
  transform: scaleX(1);
}

/* Icon wrapper */
.icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(235,116,37,0.1), rgba(235,116,37,0.05));
  color: var(--primary);
  transition: all 0.4s ease;
  position: relative;
}

.icon-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.card:hover .icon-wrapper {
  transform: scale(1.15) rotate(5deg);
  background: var(--primary);
  color: white;
}

.card:hover .icon-wrapper::before {
  opacity: 0.2;
}

/* Section title underline */
.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(235,116,37,0.3);
}

/* Trainer cards */
.trainer-img-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.trainer-img-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.card:hover .trainer-img-wrapper::before {
  opacity: 1;
}

.trainer-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .trainer-img-wrapper img {
  transform: scale(1.1);
}

.trainer-social a {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.05);
}

.trainer-social a:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  transform: translateY(-4px) rotate(5deg);
  box-shadow: 0 6px 20px rgba(235,116,37,0.3);
  border-color: var(--primary);
}

/* Explore button */
.btn-explore {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  color: white;
  padding: 16px 42px;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 6px 20px rgba(235,116,37,0.35);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-explore::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.btn-explore:hover::before {
  left: 100%;
}

.btn-explore:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(235,116,37,0.5);
  color: white;
}

/* Background decorations */
.bg-light {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%) !important;
}

/* Smooth transitions for all interactive elements */
* {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    padding: 0px 0 60px;
  }
  
  .stat-num {
    font-size: 2.5rem;
  }
  
  .section-title::after {
    width: 60px;
  }
}

  .rotate {
    animation: rotate 1s linear infinite;
  }
  @keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  .faq-question {
    font-weight: 600;
    cursor: pointer;
  }
  .faq-answer {
    display: none;
    padding-top: 0.5rem;
    color: #555;
  }