/* style.css – dark theme, green accent (#00ff88), premium feel with animations */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0a0c0d;
  color: #e3e6e8;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  line-height: 1.5;
  font-weight: 400;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main {
  flex: 1;
}

/* container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* accent green */
.accent {
  color: #00ff88;
}

/* animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* header / navbar */
.site-header {
  border-bottom: 1px solid rgba(0, 255, 136, 0.2);
  background: rgba(11, 13, 14, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  animation: fadeInUp 0.8s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: white;
  line-height: 1;
  transition: all 0.3s ease;
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00ff88;
  transition: width 0.3s ease;
}

.logo:hover::after {
  width: 100%;
}

.logo:hover {
  color: #00ff88;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #ddd;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 0.5rem 0;
}

/* Regular nav links hover effect */
.nav-links a:not(.nav-apply-btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #00ff88;
  transition: width 0.3s ease;
}

.nav-links a:not(.nav-apply-btn):hover::after {
  width: 100%;
}

.nav-links a:not(.nav-apply-btn):hover {
  color: #00ff88;
}

/* Apply button styles */
.nav-apply-btn {
  background: #00ff88;
  color: #0a0c0d !important;
  padding: 0.7rem 1.8rem !important;
  border: 2px solid #00ff88;
  transition: all 0.3s ease !important;
  font-weight: 700 !important;
  margin-left: 0.5rem;
  border-radius: 0;
}

.nav-apply-btn:hover {
  background: transparent;
  color: #00ff88 !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.nav-apply-btn.active {
  background: transparent;
  color: #00ff88 !important;
  border-color: #00ff88;
}

/* Remove the default underline for apply button */
.nav-apply-btn::after {
  display: none !important;
}

/* buttons */
.btn {
  display: inline-block;
  background: transparent;
  border: 2px solid #00ff88;
  color: #00ff88;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2.5rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 0;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #00ff88;
  transition: left 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  color: #0a0c0d;
}

.btn--solid {
  background: #00ff88;
  color: #0a0c0d;
  border: 2px solid #00ff88;
}

.btn--solid::before {
  background: transparent;
}

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

.btn--solid:hover {
  background: transparent;
  color: #00ff88;
}

/* hero */
.hero {
  padding: 5rem 0 3rem;
  position: relative;
  min-height: auto;
  overflow: visible;
}

.hero-exp {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  animation: fadeInLeft 0.8s ease;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.8rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2.5rem;
  max-width: 900px;
  animation: fadeInRight 0.8s ease 0.2s both;
  position: relative;
  z-index: 2;
}

.hero-btn {
  margin-top: 1rem;
  animation: fadeInUp 0.8s ease 0.4s both;
  position: relative;
  z-index: 2;
  display: inline-block;
}

/* service cards */
.services {
  padding: 2rem 0 5rem;
  position: relative;
  background: #0a0c0d;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0 0;
  position: relative;
  z-index: 2;
}

.service-card {
  background: linear-gradient(145deg, #141718 0%, #1a1e20 100%);
  padding: 2.5rem 2rem;
  border: 1px solid #2a2f30;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: scaleIn 0.6s ease;
  animation-fill-mode: both;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-grid .service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.card-grid .service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.card-grid .service-card:nth-child(3) {
  animation-delay: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #00ff88;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.15);
}

.service-card h3 {
  color: #00ff88;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-card:hover h3 {
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.service-card p {
  color: #b0b6b9;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

/* about page */
.page-header {
  padding: 3rem 0 1rem;
  animation: fadeInUp 0.8s ease;
}

.page-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  animation: fadeInLeft 0.8s ease;
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: 3rem 0 5rem;
}

.about-text {
  animation: fadeInLeft 0.8s ease;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: #00ff88;
  position: relative;
  display: inline-block;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #00ff88;
  transition: width 0.3s ease;
}

.about-text h2:hover::after {
  width: 100%;
}

.about-text h2:first-of-type {
  margin-top: 0;
}

.about-text p {
  font-size: 1.2rem;
  color: #cbcfd2;
  margin-bottom: 1.8rem;
  line-height: 1.6;
  transition: all 0.3s ease;
  padding-left: 20px;
  border-left: 2px solid transparent;
}

.about-text p:hover {
  border-left-color: #00ff88;
  padding-left: 25px;
  color: #ffffff;
}

.about-highlight {
  background: linear-gradient(145deg, #141718 0%, #1a1e20 100%);
  padding: 3rem 2rem;
  border: 1px solid #00ff88;
  text-align: center;
  animation: fadeInRight 0.8s ease;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.about-highlight:hover {
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

.exp-badge {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  color: white;
  position: relative;
  z-index: 1;
}

.big-number {
  font-size: 5rem;
  font-weight: 800;
  color: #00ff88;
  display: block;
}

/* programs page */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.program-card {
  background: linear-gradient(145deg, #141718 0%, #1a1e20 100%);
  padding: 2.5rem 2rem;
  border: 1px solid #2f3436;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  animation: scaleIn 0.6s ease;
  animation-fill-mode: both;
  height: 100%;
}

.program-grid .program-card:nth-child(1) {
  animation-delay: 0.1s;
}

.program-grid .program-card:nth-child(2) {
  animation-delay: 0.2s;
}

.program-grid .program-card:nth-child(3) {
  animation-delay: 0.3s;
}

.program-card:hover {
  transform: translateY(-5px);
  border-color: #00ff88;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.15);
}

.program-card h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #00ff88;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.program-card p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  flex: 1;
  color: #c5cacd;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.program-btn {
  align-self: flex-start;
  padding: 0.7rem 2rem;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.programs-cta {
  text-align: center;
  padding: 3rem 0 2rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}

/* apply page */
.apply-hero {
  padding: 2.5rem 0 1rem;
  text-align: center;
  animation: fadeInUp 0.8s ease;
}

.discipline-tagline {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  animation: fadeInLeft 0.8s ease;
}

.coaching-exp {
  font-size: 1.4rem;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 0.5rem;
  animation: fadeInRight 0.8s ease 0.2s both;
}

.apply-headline {
  font-size: 3rem;
  font-weight: 800;
  color: #00ff88;
  margin: 1rem 0 2rem;
  letter-spacing: 1px;
  animation: scaleIn 0.8s ease 0.3s both;
}

.feature-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  margin: 2rem 0;
  font-weight: 600;
  font-size: 1.3rem;
  border-top: 1px solid #2a2f30;
  border-bottom: 1px solid #2a2f30;
  padding: 2rem 0;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.feature-badges span {
  color: #00ff88;
  position: relative;
  transition: all 0.3s ease;
}

.feature-badges span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #00ff88;
  transition: width 0.3s ease;
}

.feature-badges span:hover {
  transform: translateY(-3px);
}

.feature-badges span:hover::after {
  width: 100%;
}

/* form */
.application-form-section {
  padding: 2rem 0 5rem;
}

.form-container {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(145deg, #0f1213 0%, #15191a 100%);
  padding: 3rem;
  border: 1px solid #2a2f30;
  animation: scaleIn 0.8s ease;
  position: relative;
}

.form-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: white;
  border-bottom: 2px solid #00ff88;
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.light-sub {
  font-size: 1rem;
  font-weight: 400;
  color: #9fa5a8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.field-group {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.field-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ddd;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.field-group:hover label {
  color: #00ff88;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  background: #1b1f20;
  border: 1px solid #333a3c;
  padding: 1rem 1.2rem;
  color: white;
  font-size: 1.1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: #00ff88;
  background: #1e2426;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.1);
}

.field-group input:hover,
.field-group select:hover,
.field-group textarea:hover {
  border-color: #00ff88;
}

.submit-btn {
  width: 100%;
  padding: 1.4rem;
  font-size: 1.4rem;
  font-weight: 800;
  margin-top: 1.5rem;
  background: #00ff88;
  color: #0a0c0d;
  border: 2px solid #00ff88;
}

.submit-btn:hover {
  background: transparent;
  color: #00ff88;
}

/* thank you page */
.thankyou-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.thankyou-container {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.thankyou-card {
  background: linear-gradient(145deg, #141718 0%, #1a1e20 100%);
  border: 1px solid #2a2f30;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: scaleIn 0.8s ease;
  width: 100%;
}

.success-icon {
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.success-icon span {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border: 3px solid #00ff88;
  border-radius: 50%;
  font-size: 3rem;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

.thankyou-card h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.thankyou-message {
  font-size: 1.3rem;
  color: #cbcfd2;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.thankyou-details {
  background: #1b1f20;
  padding: 2rem;
  margin: 2rem 0;
  text-align: left;
  border-left: 4px solid #00ff88;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.thankyou-details:hover {
  transform: translateX(5px);
  box-shadow: -5px 5px 15px rgba(0, 255, 136, 0.1);
}

.thankyou-details p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #00ff88;
}

.thankyou-details ul {
  list-style: none;
}

.thankyou-details li {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  color: #e3e6e8;
  transition: all 0.3s ease;
}

.thankyou-details li:hover {
  color: #00ff88;
  padding-left: 5px;
}

.thankyou-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.thankyou-actions .btn {
  min-width: 200px;
}

/* footer */
.site-footer {
  border-top: 1px solid rgba(0, 255, 136, 0.15);
  padding: 2rem 0;
  text-align: center;
  color: #7b8588;
  margin-top: auto;
}

/* loading animation for form submission */
@keyframes loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.btn.loading {
  position: relative;
  color: transparent !important;
}

.btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border: 2px solid #fff;
  border-top-color: #00ff88;
  border-radius: 50%;
  animation: loading 0.8s linear infinite;
}

/* particle animation for hero */
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #00ff88;
  border-radius: 50%;
  pointer-events: none;
  animation: float 3s ease-in-out infinite;
}

/* responsiveness */
@media (max-width: 900px) {
  .card-grid,
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .nav-links {
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
  }
  
  .nav-apply-btn {
    margin-left: 0;
    padding: 0.6rem 1.5rem !important;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero {
    padding: 3rem 0 2rem;
  }
  
  .card-grid,
  .program-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .services {
    padding: 1rem 0 3rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-container {
    padding: 2rem 1.5rem;
  }
  
  .feature-badges {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .thankyou-card {
    padding: 3rem 1.5rem;
  }
  
  .thankyou-card h1 {
    font-size: 2.2rem;
  }
  
  .thankyou-actions {
    flex-direction: column;
  }
  
  .thankyou-actions .btn {
    width: 100%;
  }
}
/* ========== THANK YOU PAGE PREMIUM STYLES ========== */

.thankyou-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 3rem 0;
  background: linear-gradient(135deg, #0a0c0d 0%, #141718 100%);
  position: relative;
  overflow: hidden;
}

.thankyou-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,255,136,0.03) 0%, transparent 50%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.thankyou-card {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(20, 23, 24, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 136, 0.2);
  padding: 4rem;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
  animation: slideUpFade 0.8s ease;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animated checkmark */
.success-animation {
  text-align: center;
  margin-bottom: 2rem;
}

.checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

.checkmark__circle {
  stroke: #00ff88;
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
  stroke: #00ff88;
  stroke-width: 2;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% { stroke-dashoffset: 0; }
}

.thankyou-card h1 {
  font-size: 3.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.thankyou-message {
  font-size: 1.3rem;
  text-align: center;
  color: #b0b6b9;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* Journey Timeline */
.journey-timeline {
  display: flex;
  justify-content: space-between;
  margin: 3rem 0 4rem;
  position: relative;
  padding: 0 1rem;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ff88 0%, #00ff88 50%, #2a2f30 50%, #2a2f30 100%);
  background-size: 200% 100%;
  background-position: 0% 0%;
  z-index: 1;
}

.timeline-step {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}

.timeline-step .step-icon {
  width: 50px;
  height: 50px;
  background: #1b1f20;
  border: 2px solid #2a2f30;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
  transition: all 0.3s ease;
}

.timeline-step.completed .step-icon {
  background: #00ff88;
  border-color: #00ff88;
  color: #0a0c0d;
}

.timeline-step.active .step-icon {
  border-color: #00ff88;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
  animation: pulse 2s infinite;
}

.timeline-step .step-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #9fa5a8;
  max-width: 120px;
  margin: 0 auto;
}

.timeline-step.completed .step-label {
  color: #00ff88;
}

.timeline-step.active .step-label {
  color: white;
}

/* Next Steps Grid */
.next-steps {
  margin: 4rem 0;
}

.next-steps h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  background: rgba(27, 31, 32, 0.7);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #2a2f30;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00ff88, transparent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  border-color: #00ff88;
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.15);
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-card-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.step-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #00ff88;
}

.step-card p {
  color: #b0b6b9;
  line-height: 1.6;
}

/* Preparation Tips */
.preparation-tips {
  background: linear-gradient(145deg, #1a1e20 0%, #141718 100%);
  padding: 3rem;
  border-radius: 15px;
  margin: 3rem 0;
  border: 1px solid rgba(0, 255, 136, 0.1);
}

.preparation-tips h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.tips-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.tip-number {
  font-size: 2rem;
  font-weight: 800;
  color: #00ff88;
  opacity: 0.5;
  line-height: 1;
}

.tip-item p {
  font-size: 1.1rem;
  color: #e3e6e8;
  margin: 0;
}

/* Community Section */
.community-section {
  text-align: center;
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(0, 255, 136, 0.05);
  border-radius: 15px;
}

.community-section > p {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-mini {
  max-width: 400px;
  margin: 0 auto;
}

.testimonial-mini p {
  font-style: italic;
  color: #cbcfd2;
  font-size: 1.1rem;
}

.testimonial-author {
  color: #00ff88 !important;
  font-style: normal !important;
  margin-top: 0.5rem;
  font-weight: 600;
}

/* Action Buttons */
.thankyou-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 3rem 0 2rem;
}

.btn--outline {
  background: transparent;
  border: 2px solid #00ff88;
  color: #00ff88;
}

.btn--outline:hover {
  background: #00ff88;
  color: #0a0c0d;
}

/* Contact Reminder */
.contact-reminder {
  text-align: center;
  color: #7b8588;
}

.contact-reminder a {
  color: #00ff88;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-reminder a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 900px) {
  .steps-grid,
  .tips-list {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .journey-timeline {
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .timeline-step {
    flex: 0 0 calc(50% - 1rem);
  }
  
  .journey-timeline::before {
    display: none;
  }
}

@media (max-width: 700px) {
  .thankyou-card {
    padding: 2rem;
  }
  
  .thankyou-card h1 {
    font-size: 2.5rem;
  }
  
  .steps-grid,
  .tips-list {
    grid-template-columns: 1fr;
  }
  
  .timeline-step {
    flex: 0 0 100%;
  }
  
  .thankyou-actions {
    flex-direction: column;
  }
  
  .thankyou-actions .btn {
    width: 100%;
  }
  
  .preparation-tips {
    padding: 2rem 1.5rem;
  }
}

/* Additional Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
  }
  50% { 
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
  }
}

.step-card:nth-child(1) .step-card-icon {
  animation: bounce 2s infinite 0.1s;
}

.step-card:nth-child(2) .step-card-icon {
  animation: bounce 2s infinite 0.2s;
}

.step-card:nth-child(3) .step-card-icon {
  animation: bounce 2s infinite 0.3s;
}