/* CSS Variables */
:root {
  --primary-color: #2196f3;
  --primary-dark: #1976d2;
  --secondary-color: #64b5f6;
  --accent-color: #42a5f5;
  --text-primary: #ffffff;
  --text-secondary: #b0bec5;
  --text-muted: #78909c;
  --background-dark: #0a0a0a;
  --background-card: #1a1a1a;
  --background-section: #111111;
  --border-color: #333333;
  --shadow-light: rgba(33, 150, 243, 0.1);
  --shadow-dark: rgba(0, 0, 0, 0.3);
  --gradient-primary: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
  --gradient-secondary: linear-gradient(135deg, #1976d2 0%, #2196f3 100%);
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  text-align: center;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.highlight {
  color: var(--primary-color);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px var(--shadow-light);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-light);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-color);
}

.btn-outline:hover {
  background: var(--text-primary);
  color: var(--background-dark);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(33, 150, 243, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: var(--background-section);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--background-card);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-dark);
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.testimonial-author h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* About Section */
.about {
  padding: 100px 0;
  background: var(--background-dark);
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  text-align: left;
  color: var(--primary-color);
}

.about-text h3 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.credentials, .philosophy {
  margin-top: 2rem;
}

.credentials h4, .philosophy h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.credentials ul {
  list-style: none;
  padding-left: 0;
}

.credentials li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
}

.credentials li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 0.5rem;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-photo {
  width: 300px;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-photo:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.image-placeholder {
  width: 300px;
  height: 400px;
  background: var(--background-card);
  border: 2px dashed var(--border-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.2rem;
}

/* Coaching Section */
.coaching {
  padding: 100px 0;
  background: var(--background-section);
}

.section-description {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: var(--text-secondary);
}

.coaching-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.coaching-card {
  background: var(--background-card);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.coaching-card.popular {
  border-color: var(--primary-color);
  box-shadow: 0 0 30px var(--shadow-light);
}

.coaching-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-dark);
}

.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 2rem;
  border-radius: 0 0 15px 15px;
  font-size: 0.9rem;
  font-weight: 600;
}

.card-header {
  padding: 2rem 2rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.card-header h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.price span {
  font-size: 1rem;
  color: var(--text-muted);
}

.card-content {
  padding: 2rem;
}

.card-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.card-content li {
  padding: 0.75rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-content li:last-child {
  border-bottom: none;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: var(--background-dark);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  background: var(--background-card);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: rgba(33, 150, 243, 0.05);
}

.faq-question h3 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin: 0;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 2rem 1.5rem;
  display: none;
  color: var(--text-secondary);
}

.faq-item.active .faq-answer {
  display: block;
}

/* Extras Section */
.extras {
  padding: 100px 0;
  background: var(--background-section);
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.extra-card {
  background: var(--background-card);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.extra-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--shadow-dark);
  border-color: var(--primary-color);
}

.extra-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.extra-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

.extra-card h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.extra-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.extra-card p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 0.95rem;
  flex-grow: 1;
}

.btn-small {
  padding: 14px 32px;
  font-size: 0.95rem;
  border-radius: 50px;
  font-weight: 600;
  margin-top: auto;
  min-width: 140px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
  background: var(--gradient-secondary);
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--background-section);
  text-align: center;
}

.contact h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: var(--text-secondary);
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--background-dark);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 40px;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  color: var(--text-muted);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-text h2 {
    text-align: center;
  }

  .coaching-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .extras-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .extra-card {
    padding: 1.5rem;
    min-height: 250px;
  }

  .extra-icon {
    font-size: 2.5rem;
  }

  .extra-price {
    font-size: 1.6rem;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-content {
    padding: 0 15px;
  }

  .testimonials-grid,
  .coaching-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card-content,
  .testimonial-card {
    padding: 1.5rem;
  }

  .faq-question {
    padding: 1rem 1.5rem;
  }

  .faq-answer {
    padding: 0 1.5rem 1rem;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Legal Pages */
.legal-page {
  padding: 120px 0 80px;
  background: var(--background-dark);
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-secondary);
}

.legal-content h1 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 3rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-content h2 {
  color: var(--text-primary);
  text-align: left;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
}

.legal-content h3 {
  color: var(--secondary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.legal-content h4 {
  color: var(--text-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.legal-section {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-content p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.legal-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.legal-content a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-content a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.back-link {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
}

@media (max-width: 768px) {
  .legal-page {
    padding: 100px 0 60px;
  }

  .legal-content {
    padding: 0 15px;
  }

  .legal-content h2 {
    font-size: 1.3rem;
  }

  .legal-content ul {
    padding-left: 1.5rem;
  }
}

/* Success Page */
.success-page {
  padding: 120px 0 80px;
  background: var(--background-dark);
  min-height: 100vh;
}

.success-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-secondary);
}

.success-icon {
  font-size: 5rem;
  margin-bottom: 2rem;
  display: block;
}

.success-content h1 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.success-message {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

.success-details {
  background: var(--background-card);
  border-radius: 20px;
  padding: 2rem;
  margin: 3rem 0;
  border: 1px solid var(--border-color);
  text-align: left;
}

.success-details h3 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.step-number {
  background: var(--gradient-primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-text h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.step-text p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.success-footer {
  background: var(--background-section);
  border-radius: 15px;
  padding: 2rem;
  margin-top: 3rem;
}

.success-footer p {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.success-footer p:first-child {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .success-page {
    padding: 100px 0 60px;
  }

  .success-content {
    padding: 0 15px;
  }

  .success-details {
    padding: 1.5rem;
  }

  .steps {
    gap: 1.5rem;
  }

  .step {
    gap: 1rem;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .success-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* Smooth scrolling for modern browsers */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}