* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #1a252f;
  color: white;
  line-height: 1.6;
}

/* Color Variables */
:root {
  --primary: #FF9800;
  --secondary: #2C3E50;
  --dark: #1a252f;
  --accent-green: #4CAF50;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

/* Utility Classes */
.container-custom {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.section-padding {
  padding: 5rem 1.5rem;
}

@media (min-width: 1024px) {
  .section-padding {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.gradient-text {
  background: linear-gradient(135deg, #4CAF50 0%, #FF9800 50%, #FFB74D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary);
  color: #000;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 152, 0, 0.5);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid var(--primary);
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: #000;
  transform: scale(1.05);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(42, 62, 80, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideDown 0.6s ease-out;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;

}

.logo img {
  width: 15rem;
  object-fit: contain;
}

@media (max-width: 375px) {
  .logo img {
    max-width: 150px;
  }
  .btn-primary {
    padding: 0.575rem 1.5rem;
  }
}

.logo span {
  font-size: 1.25rem;
  font-weight: 700;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 0;
  animation-fill-mode: forwards;
}

.animate-fade-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

.animate-scale {
  animation: scaleIn 0.6s ease-out forwards;
}

.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

.animate-delay-4 {
  animation-delay: 0.4s;
}

.animate-delay-5 {
  animation-delay: 0.5s;
}

.animate-delay-6 {
  animation-delay: 0.6s;
}

/* Hero Section */
#home {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(to bottom right, var(--dark), var(--secondary), var(--dark));
  overflow: hidden;
}

.hero {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-blur {
  position: absolute;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.15) 0%, rgba(255, 152, 0, 0.15) 100%);
  border-radius: 50%;
  filter: blur(80px);
}

.hero-blur-1 {
  top: 5rem;
  right: 5rem;
}

.hero-blur-2 {
  bottom: 5rem;
  left: 5rem;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 8rem;
  padding-bottom: 5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr; /* single column on mobile */
  gap: 2rem;
  align-items: center;
}


.hero-image-container dotlottie-wc {
  height: 100%;
  max-height: 500px;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 2fr 1fr; /* two columns on tablets and above */
  }
}

.hero-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-text {
  color: var(--gray-400);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 32rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-reviews {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1.5rem;
}

.review-avatars {
  display: flex;
  margin-left: -0.75rem;
}

.review-avatars img,
.review-avatars .avatar-plus {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid var(--dark);
  object-fit: cover;
  margin-left: -0.75rem;
}

.avatar-plus {
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-weight: 700;
  font-size: 0.875rem;
}

.review-stars {
  display: flex;
  color: var(--primary);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.review-text {
  color: var(--gray-400);
  font-size: 0.875rem;
}

.hero-image-container {
  position: relative;
}

.hero-image-blur {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(255, 152, 0, 0.2);
  border-radius: 50%;
  filter: blur(80px);
}

.hero-image {
  position: relative;
  z-index: 10;
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
}

.hero-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 20;
}

.hero-action-btn {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  color: white;
}

.hero-action-btn:hover {
  background-color: var(--primary);
}

/* Stats Section */
.stats-header {
  text-align: center;
  margin-bottom: 4rem;
}

.stats-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .stats-title {
    font-size: 3rem;
  }
}

.stats-description {
  font-size: 1.25rem;
  color: var(--gray-400);
  max-width: 56rem;
  margin: 0 auto;
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.stat-card:hover {
  border-color: rgba(255, 152, 0, 0.5);
}

.stat-value {
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 4.5rem;
  }
}

.stat-label {
  font-size: 1.125rem;
  color: var(--gray-300);
  max-width: 20rem;
  margin: 0 auto;
  line-height: 1.8;
}

/* Corporate Wellness Section */
.corporate-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .corporate-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.corporate-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .corporate-title {
    font-size: 2rem;
  }
}

.corporate-text {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.corporate-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.65rem;
}

.feature-item svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #4CAF50;
  margin-right: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-text {
  font-size: 1.125rem;
  color: var(--gray-300);
}

.corporate-note {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-style: italic;
  margin-top: 1.5rem;
}

.corporate-image-container {
  position: relative;
}

.corporate-image-blur {
  position: absolute;
  inset: 0;
  background: rgba(255, 152, 0, 0.1);
  border-radius: 1.5rem;
  filter: blur(80px);
}

.corporate-image {
  position: relative;
  z-index: 10;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

/* For Trainers Section */
.trainers-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .trainers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trainer-card {
  background-color: var(--secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}

.trainer-card:hover {
  border-color: rgba(255, 152, 0, 0.5);
}

.trainer-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.benefit-list {
  list-style: none;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.benefit-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #4CAF50;
  margin-right: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.benefit-text {
  font-size: 1.125rem;
  color: var(--gray-300);
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
}

.step-number {
  background-color: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-right: 1rem;
}

.step-text {
  font-size: 1.125rem;
  color: var(--gray-300);
  padding-top: 0.25rem;
}

.cta-box {
  text-align: center;
  background: linear-gradient(135deg, #4CAF50 0%, #FF9800 50%, #FFB74D 100%);
  color: white;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cta-box h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

@media (min-width: 768px) {
  .cta-box h3 {
    font-size: 2.25rem;
  }
}

.cta-box .btn-primary {
  background-color: white;
  color: #FF9800;
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.cta-box .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.cta-note {
  font-size: 0.875rem;
  max-width: 48rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(255, 152, 0, 0.5);
}

.testimonial-video {
  position: relative;
  margin-bottom: 1.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background-color: var(--gray-800);
}

.testimonial-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s;
}

.play-icon:hover {
  transform: scale(1.1);
}

.play-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--dark);
  margin-left: 0.25rem;
}

.testimonial-quote {
  color: var(--gray-300);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
}

.author-location {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.testimonial-rating {
  display: flex;
  color: var(--primary);
  font-size: 0.875rem;
  margin-top: 1rem;
}

/* Join Movement Section */
.join-background {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.join-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.join-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark), rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.6));
}

.join-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.join-inner {
  max-width: 56rem;
  margin: 0 auto;
}

.join-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .join-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .join-title {
    font-size: 4.5rem;
  }
}

.join-description {
  font-size: 1.25rem;
  color: var(--gray-300);
  margin-bottom: 3rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.join-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .join-buttons {
    flex-direction: row;
  }
}

.join-buttons .btn-primary,
.join-buttons .btn-secondary {
  font-size: 1.125rem;
  padding: 1rem 3rem;
}

.join-link {
  margin-bottom: 4rem;
}

.join-link a {
  color: var(--primary);
  transition: color 0.3s;
  font-size: 1.125rem;
  text-decoration: underline;
}

.join-link a:hover {
  color: rgba(255, 152, 0, 0.8);
}

.join-cards {
  display: grid;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .join-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.join-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.join-card:hover {
  border-color: rgba(255, 152, 0, 0.5);
}

.join-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.join-card-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  stroke: var(--primary);
}

.join-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.join-card p {
  color: var(--gray-400);
}

/* Contact Section */
.contact-grid {
  display: grid;
  gap: 2rem;
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-card {
  background-color: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}

.contact-card:hover {
  border-color: rgba(255, 152, 0, 0.5);
}

.contact-card-inner {
  display: flex;
  align-items: flex-start;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 1rem;
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--dark);
}

.contact-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-info a {
  color: var(--gray-400);
  transition: color 0.3s;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.contact-info a:hover {
  color: var(--primary);
}

.contact-info .phone-link {
  font-size: 1.125rem;
}

/* Footer */
footer {
  background-color: var(--secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 15rem;
  height: ;
  object-fit: contain;
}

.footer-logo span {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-text {
  color: var(--gray-400);
  padding-left: 1rem;
  font-size: 0.875rem;
}

.footer-heading {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--gray-400);
  transition: color 0.3s;
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
  color: white;
}

.social-link:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.social-link.primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.social-link.primary:hover {
  background-color: rgba(212, 252, 60, 0.8);
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.social-link.primary svg {
  color: var(--dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--gray-400);
  font-size: 0.875rem;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #4CAF50, #FF9800);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.scroll-to-top:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 152, 0, 0.5);
}

.scroll-to-top svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Modal Styles - Add this to your styles.css */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  position: relative;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s ease;
  z-index: 10000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  color: white;
}

.modal-close:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.modal-header p {
  color: var(--gray-400);
  font-size: 1rem;
}

.join-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
}

.form-group input,
.form-group select {
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: white;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder {
  color: var(--gray-500);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23FF9800' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.form-group select option {
  background-color: var(--secondary);
  color: white;
}

.form-submit {
  margin-top: 1rem;
  width: 100%;
  padding: 1rem;
  font-size: 1.125rem;
}

.form-submit:hover {
  transform: translateY(-2px);
}