/* ========================================
   SOLARFLARE - CAREER & GROWTH WEBSITE STYLES
   ======================================== */

/* Fonts */
:root {
  --default-font: "Turret Road", cursive, system-ui, -apple-system, "Segoe UI", sans-serif;
  --heading-font: "Turret Road", cursive;
  --nav-font: "Turret Road", cursive;
}

/* Global Colors - Solarflare Fire Theme */
:root {
  /* Primary Colors - Light Theme */
  --background-color: #ffffff;
  --default-color: #1a1a1a;
  --heading-color: #0d0d0d;
  --accent-color: #ff6b35;
  --surface-color: #fff5f0;
  --contrast-color: #ff8c42;
  --bg-color: #fff5f0;
  
  /* Navigation */
  --nav-color: #4a4a4a;
  --nav-hover-color: #ff6b35;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #fff5f0;
  --nav-dropdown-color: #4a4a4a;
  --nav-dropdown-hover-color: #ff6b35;
  
  /* Solarflare Theme Colors - Fire & Energy */
  --primary-gradient: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  --secondary-gradient: linear-gradient(135deg, #f7931e 0%, #ffd700 100%);
  --fire-gradient: linear-gradient(135deg, #ff4500 0%, #ff8c42 100%);
  --energy-gradient: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
  
  /* Status Colors */
  --success-color: #10b981;
  --warning-color: #ff8c42;
  --error-color: #ff4500;
  --info-color: #ff6b35;
  
  /* Text Colors */
  --light-text: #666666;
  --muted-text: #999999;
  --dark-text: #0d0d0d;
  
  /* UI Colors */
  --border-color: #ffe0d0;
  --shadow-color: rgba(255, 107, 53, 0.15);
  --card-bg: #ffffff;
  --section-bg: #fff5f0;
  --footer-bg: #ffe8d6;
  
  /* Solarflare Specific Colors */
  --solarflare-orange: #ff6b35;
  --solarflare-gold: #ffd700;
  --solarflare-red: #ff4500;
  --solarflare-amber: #f7931e;
  --solarflare-dark: #1a1a1a;
  --solarflare-light: #fff5f0;
  --solarflare-yellow: #ffeb3b;
  --solarflare-coral: #ff8c42;
  --solarflare-bright: #ffa500;
}

/* Color Presets */
.light-background {
  --background-color: #ffffff;
  --surface-color: #f8fafc;
  --section-bg: #f8fafc;
}

.dark-background {
  --background-color: #ffe8d6;
  --default-color: #1a1a1a;
  --heading-color: #0d0d0d;
  --surface-color: #ffffff;
  --contrast-color: #ff6b35;
  --section-bg: #ffe8d6;
  --card-bg: #ffffff;
  --border-color: #ffe0d0;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */

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

body {
  font-family: var(--default-font);
  background-color: var(--background-color);
  color: var(--default-color);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

h4 {
  font-size: 1.4rem;
  font-weight: 500;
}

p {
  margin-bottom: 1rem;
  color: var(--light-text);
  font-size: 1.1rem;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--contrast-color);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(10, 14, 26, 0.98);
  box-shadow: 0 4px 20px var(--shadow-color);
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.navbar .navmenu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.navbar .navmenu li a {
  color: var(--nav-color);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar .navmenu li a:hover {
  color: var(--nav-hover-color);
  background: rgba(139, 92, 246, 0.1);
  transform: translateY(-2px);
}

.navbar .navmenu li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar .navmenu li a:hover::after {
  width: 80%;
}

/* CTA Button */
.btn-getstarted {
  background: var(--primary-gradient);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
    cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-getstarted:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
  color: white;
}

/* ========================================
   MOBILE NAVIGATION
   ======================================== */

.mobile-menu-toggle-wrapper {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  display: none;
  cursor: pointer;
}

@media (max-width: 991.98px) {
  .mobile-menu-toggle-wrapper {
    display: block !important;
  }
}

.mobile-menu-toggle {
  background: var(--primary-gradient);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.mobile-nav-toggle-btn {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-nav-toggle-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav-toggle-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-nav-toggle-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}


.mobile-nav-container {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--nav-mobile-background-color);
  z-index: 10002;
  transition: right 0.3s ease;
  overflow-y: auto;
  border-left: 1px solid var(--border-color);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.mobile-nav-container.active {
  right: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.mobile-nav-header {
  padding: 2rem 1.5rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav-header h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  margin: 0;
}

.mobile-nav-menu {
  padding: 1rem 0;
}

.mobile-nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-menu li {
  margin: 0;
}

.mobile-nav-menu li a {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  color: var(--nav-color);
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav-menu li a:hover {
  background: rgba(139, 92, 246, 0.1);
  color: var(--nav-hover-color);
  border-left-color: var(--accent-color);
}

.mobile-nav-menu li a i {
  margin-right: 1rem;
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.mobile-nav-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.mobile-nav-footer .btn {
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
}

.mobile-nav-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.mobile-nav-social a {
  width: 40px;
  height: 40px;
  background: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nav-color);
  transition: all 0.3s ease;
}

.mobile-nav-social a:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-2px);
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title p {
  font-size: 1.2rem;
  color: var(--light-text);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   HERO SECTION
   ======================================== */

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--light-text);
}

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

.btn-primary {
  background: var(--primary-gradient);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: var(--accent-color);
  padding: 1rem 2rem;
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* ========================================
   ABOUT SECTION
   ======================================== */

#about {
  background: var(--section-bg);
  position: relative;
  padding: 6rem 0;
}

#about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.about-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.about-text {
  padding-right: 2rem;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--light-text);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border-color: var(--accent-color);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-visual {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.about-visual:hover .about-visual-image {
  transform: scale(1.05);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--card-bg);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-color: var(--accent-color);
}

.feature-item .feature-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-item .feature-text h4 {
  color: var(--heading-color);
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  font-weight: 600;
}

.feature-item .feature-text p {
  color: var(--light-text);
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

#features {
  background: var(--background-color);
  position: relative;
}

#features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.feature-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-gradient);
  opacity: 0;
  transition: all 0.3s ease;
}

.feature-card:hover::before {
  opacity: 0.05;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  position: relative;
  z-index: 2;
}

.feature-card h3 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
}

.feature-card p {
  color: var(--light-text);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.feature-link {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.feature-link:hover {
  color: var(--contrast-color);
}

/* ========================================
   FEATURE DETAILS SECTION
   ======================================== */

#feature-details {
  background: var(--section-bg);
  position: relative;
}

#feature-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-details .feature-card {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.feature-details .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-color: var(--accent-color);
}

.feature-media {
  position: relative;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

.feature-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-details .feature-card:hover .feature-image {
  transform: scale(1.05);
}

.feature-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary-gradient);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feature-details .feature-card h3 {
  color: var(--heading-color);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.feature-details .feature-card p {
  color: var(--light-text);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
  z-index: 2;
  flex: 1;
}

.feature-points {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}

.feature-points li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: var(--light-text);
  font-size: 0.9rem;
}

.feature-points li i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

#testimonials {
  background: var(--section-bg);
  position: relative;
  padding: 6rem 0;
}

#testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Swiper Container */
.init-swiper {
  position: relative;
  z-index: 2;
  padding: 2rem 0 4rem 0;
}

.swiper-wrapper {
  align-items: stretch;
}

/* Testimonial Slide */
.swiper-slide {
  height: auto;
  display: flex;
}

.testimonial-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-item {
  background: var(--card-bg);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 20px 20px 0 0;
}

.testimonial-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
  border-color: var(--accent-color);
}

/* Testimonial Image */
.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem auto;
  border: 4px solid var(--accent-color);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.testimonial-item:hover .testimonial-img {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Testimonial Name */
.testimonial-item h3 {
  color: var(--heading-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  position: relative;
  z-index: 2;
}

/* Stars Rating */
.stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.stars i {
  color: #fbbf24;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.stars i:hover {
  transform: scale(1.2);
  color: #f59e0b;
}

/* Testimonial Text */
.testimonial-item p {
  color: var(--light-text);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
}

.testimonial-item p::before {
  content: '"';
  font-size: 3rem;
  color: var(--accent-color);
  position: absolute;
  top: -10px;
  left: -10px;
  opacity: 0.3;
  font-family: serif;
}

.testimonial-item p::after {
  content: '"';
  font-size: 3rem;
  color: var(--accent-color);
  position: absolute;
  bottom: -20px;
  right: -10px;
  opacity: 0.3;
  font-family: serif;
}

/* Swiper Pagination */
.swiper-pagination {
  position: relative;
  margin-top: 2rem;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--border-color);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
  transform: scale(1.2);
}

/* Swiper Navigation (if needed) */
.swiper-button-next,
.swiper-button-prev {
  color: var(--accent-color);
  background: var(--card-bg);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--accent-color);
  color: white;
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

.testimonial-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: var(--contrast-color);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
  color: var(--light-text);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
}

.testimonial-info h4 {
  color: var(--heading-color);
  margin: 0;
  font-size: 1.1rem;
}

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

/* ========================================
   FAQ SECTION
   ======================================== */

#faq {
  background: var(--background-color);
  position: relative;
}

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

.faq-item {
  background: var(--card-bg);
  margin-bottom: 1rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.faq-question:hover {
  background: rgba(139, 92, 246, 0.1);
}

.faq-question h3 {
  color: var(--heading-color);
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

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

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

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 200px;
}

.faq-answer p {
  color: var(--light-text);
  margin: 0;
  line-height: 1.6;
}

/* ========================================
   MEDITACIÓN SECTION
   ======================================== */

#meditacion {
  background: var(--section-bg);
  position: relative;
}

#meditacion::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.meditacion-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.meditacion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--meditation-gradient);
  opacity: 0;
  transition: all 0.3s ease;
}

.meditacion-card:hover::before {
  opacity: 0.1;
}

.meditacion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: var(--meditation-purple);
}

.meditacion-icon {
  width: 70px;
  height: 70px;
  background: var(--meditation-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: white;
  position: relative;
  z-index: 2;
}

.meditacion-card h3 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  position: relative;
  z-index: 2;
}

.meditacion-card p {
  color: var(--light-text);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.meditacion-link {
  color: var(--meditation-purple);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.meditacion-link:hover {
  color: var(--meditation-cyan);
}

/* ========================================
   CONTACT SECTION
   ======================================== */

#contact {
  background: var(--background-color);
  position: relative;
  padding: 6rem 0;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.contact-info {
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

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

.contact-info h3 {
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-size: 1.8rem;
  text-align: center;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.contact-item:hover {
  background: rgba(139, 92, 246, 0.1);
  transform: translateX(10px);
  border-color: var(--accent-color);
  box-shadow: 0 5px 20px rgba(139, 92, 246, 0.2);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-text h4 {
  color: var(--heading-color);
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.contact-text p {
  color: var(--light-text);
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

.contact-form {
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--secondary-gradient);
}

.contact-form h3 {
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-size: 1.8rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.25rem;
  background: var(--surface-color);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  color: var(--default-color);
  font-family: var(--default-font);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
  background: var(--card-bg);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  background: var(--primary-gradient);
  color: white;
  padding: 1.25rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.contact-map {
  margin-top: 2rem;
  height: 200px;
  background: var(--surface-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
  border: 2px dashed var(--border-color);
}

.contact-map i {
  font-size: 2rem;
  margin-right: 1rem;
  color: var(--accent-color);
}

/* ========================================
   FOOTER
   ======================================== */

#footer {
  background: var(--footer-bg);
  position: relative;
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, var(--section-bg) 0%, var(--footer-bg) 100%);
}

.footer-top {
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 2;
}

.footer-brand h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer-brand p {
  color: var(--light-text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nav-color);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}

.footer-links h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-newsletter h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--default-color);
  font-family: var(--default-font);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent-color);
}

.newsletter-form input[type="submit"] {
  background: var(--primary-gradient);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

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

.copyright p {
  color: var(--muted-text);
  margin: 0;
  font-size: 0.9rem;
}

/* ========================================
   COOKIE POPUP - SIMPLE & WORKING
   ======================================== */

.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 100%);
  border: 2px solid var(--solarflare-orange);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4), 0 0 30px rgba(255, 107, 53, 0.2);
  z-index: 10000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
  max-width: 550px;
  margin: 0 auto;
  display: none;
  backdrop-filter: blur(10px);
}

.cookie-popup.show {
  transform: translateY(0);
  opacity: 1;
  display: block;
}

.cookie-popup-content {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

.cookie-text {
  flex: 1;
}

.cookie-text h4 {
  color: #ffffff;
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 15px 0;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-btn-accept {
  background: var(--primary-gradient) !important;
  color: white !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4) !important;
  border: 2px solid transparent !important;
  position: relative !important;
  overflow: hidden !important;
  padding: 12px 28px !important;
  border-radius: 50px !important;
  font-size: 14px !important;
  min-width: 130px;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-block !important;
  text-align: center !important;
}

.cookie-btn-accept::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;
}

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

.cookie-btn-accept:hover {
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6) !important;
  background: var(--secondary-gradient) !important;
}

.cookie-btn-accept:active {
  transform: translateY(-1px) scale(1.02) !important;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4) !important;
}


/* ========================================
   SCROLL TOP BUTTON
   ======================================== */

#scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

#scroll-top.show {
  opacity: 1;
  visibility: visible;
}

#scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .navbar .navmenu {
    display: none;
  }
  
  .header .d-flex.align-items-center {
    display: none !important;
  }
  
  .mobile-menu-toggle-wrapper {
    display: block;
  }
  
  /* Feature Details Mobile */
  .feature-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .feature-details .feature-card {
    padding: 1rem;
  }
  
  .feature-image {
    height: 120px;
  }
  
  .feature-details .feature-card h3 {
    font-size: 1.1rem;
  }
  
  .feature-details .feature-card p {
    font-size: 0.9rem;
  }
  
  /* About Section Mobile */
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-text {
    padding-right: 0;
  }
  
  .about-features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .feature-item {
    padding: 0.75rem;
  }
  
  .feature-item .feature-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .feature-item .feature-text h4 {
    font-size: 0.9rem;
  }
  
  .feature-item .feature-text p {
    font-size: 0.8rem;
  }
  
  .about-visual {
    height: 300px;
  }
  
  .about-visual-image {
    border-radius: 15px;
  }
  
  /* Contact Section Mobile */
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-info,
  .contact-form {
    padding: 2rem;
  }
  
  /* Cookie Popup Mobile */
  .cookie-popup {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 15px;
    max-width: none;
  }
  
  .cookie-popup-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .cookie-text h4 {
    font-size: 16px;
  }
  
  .cookie-text p {
    font-size: 13px;
  }
  
  .cookie-btn-accept {
    padding: 10px 20px !important;
    font-size: 12px !important;
    min-width: 100px;
  }
  
  .cookie-btn-accept:hover {
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4) !important;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  /* Feature Details Tablet */
  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  
  .feature-details .feature-card {
    padding: 1.25rem;
  }
  
  .feature-image {
    height: 130px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3rem 0;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .about-grid,
  .features-grid,
  .testimonials-grid,
  .meditacion-grid {
    grid-template-columns: 1fr;
  }
  
  /* Testimonials Mobile */
  .testimonial-item {
    padding: 2rem 1.5rem;
    border-radius: 15px;
  }
  
  .testimonial-img {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
  }
  
  .testimonial-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .testimonial-item p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .testimonial-item p::before,
  .testimonial-item p::after {
    font-size: 2rem;
  }
  
  .stars i {
    font-size: 1rem;
  }
  
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  
  .about-card,
  .feature-card,
  .testimonial-card,
  .meditacion-card {
    padding: 1.5rem;
  }
  
  /* Feature Details Mobile Small */
  .feature-cards {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .feature-details .feature-card {
    padding: 0.75rem;
  }
  
  .feature-image {
    height: 100px;
  }
  
  .feature-details .feature-card h3 {
    font-size: 1rem;
  }
  
  .feature-details .feature-card p {
    font-size: 0.85rem;
  }
  
  .feature-points li {
    font-size: 0.8rem;
  }
}

/* ========================================
   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);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out;
}

.animate-fadeInLeft {
  animation: fadeInLeft 0.6s ease-out;
}

.animate-fadeInRight {
  animation: fadeInRight 0.6s ease-out;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

.overflow-hidden {
  overflow: hidden;
}

.rounded {
  border-radius: 8px;
}

.rounded-lg {
  border-radius: 15px;
}

.rounded-xl {
  border-radius: 20px;
}

.shadow {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.shadow-xl {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ========================================
   HERO ANIMATED SECTION
   ======================================== */

.hero-animated {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 50%, #1a1a1a 100%);
  overflow: hidden;
  padding: 0;
}

#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-text {
  padding: 2rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 50px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--solarflare-orange);
  backdrop-filter: blur(10px);
  animation: pulse 2s ease-in-out infinite;
}

.hero-badge i {
  font-size: 1.2rem;
  animation: lightning 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
  }
}

@keyframes lightning {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-subtitle {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
  margin-top: 0.5rem;
  text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.hero-description {
  font-size: 1.3rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 2.5rem;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  position: relative;
  overflow: hidden;
}

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

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

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 107, 53, 0.5);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 107, 53, 0.2);
  border-color: var(--solarflare-orange);
  transform: translateY(-3px);
  color: white;
}

.hero-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.glow-effect {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.4) 0%, transparent 70%);
  animation: glow-pulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glow-pulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.hero-main-image {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

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

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  color: var(--dark-text);
  font-size: 0.9rem;
}

.floating-card i {
  font-size: 1.5rem;
  color: var(--solarflare-orange);
}

.floating-card.card-1 {
  top: 10%;
  right: -10%;
  animation: float-card-1 4s ease-in-out infinite;
}

.floating-card.card-2 {
  bottom: 20%;
  left: -15%;
  animation: float-card-2 5s ease-in-out infinite;
}

.floating-card.card-3 {
  top: 50%;
  right: -5%;
  animation: float-card-3 6s ease-in-out infinite;
}

@keyframes float-card-1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-10px, -15px) rotate(2deg);
  }
}

@keyframes float-card-2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(15px, -10px) rotate(-2deg);
  }
}

@keyframes float-card-3 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-5px, 15px) rotate(1deg);
  }
}

/* ========================================
   CURSOS SECTION
   ======================================== */

.cursos.section {
  background: linear-gradient(180deg, var(--section-bg) 0%, #ffffff 100%);
  padding: 6rem 0;
}

.curso-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid transparent;
}

.curso-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
  border-color: var(--solarflare-orange);
}

.curso-card.featured {
  border: 2px solid var(--solarflare-orange);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.curso-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--primary-gradient);
  z-index: 1;
}

.curso-header {
  position: relative;
  padding: 2rem;
  background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
  text-align: center;
}

.curso-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  background: var(--solarflare-orange);
  color: white;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.curso-badge.highlight {
  background: var(--primary-gradient);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.curso-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.curso-icon {
  font-size: 2.5rem;
  color: white;
}

.curso-body {
  padding: 0 2rem 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.curso-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-text);
  text-align: center;
}

.curso-description {
  color: var(--light-text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: center;
  flex-grow: 1;
}

.curso-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.curso-features li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--light-text);
  font-size: 0.95rem;
}

.curso-features li i {
  color: var(--solarflare-orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.curso-footer {
  margin-top: auto;
}

.curso-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 2rem;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.curso-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
  color: white;
}

.curso-btn i {
  transition: transform 0.3s ease;
}

.curso-btn:hover i {
  transform: translateX(5px);
}

/* Responsive Hero Animated */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .floating-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .curso-card {
    margin-bottom: 2rem;
  }
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing.section {
  background: linear-gradient(180deg, var(--section-bg) 0%, #ffffff 100%);
  padding: 6rem 0;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
  border-color: var(--solarflare-orange);
}

.pricing-card.featured {
  border: 2px solid var(--solarflare-orange);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-text);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.pricing-price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--solarflare-orange);
}

.pricing-price .amount {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.pricing-price .period {
  font-size: 1rem;
  color: var(--light-text);
  margin-left: 0.25rem;
}

.pricing-savings {
  color: var(--solarflare-orange);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--light-text);
  font-size: 0.95rem;
}

.pricing-features li i {
  color: var(--solarflare-orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pricing-cta {
  margin-top: auto;
}

.btn-pricing {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-pricing:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
  color: white;
}

.btn-pricing.primary {
  background: var(--secondary-gradient);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
  font-size: 1.1rem;
}

.pricing-comparison {
  margin-top: 4rem;
}

.comparison-table {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table thead {
  background: var(--primary-gradient);
  color: white;
}

.comparison-table thead th {
  padding: 1.25rem;
  font-weight: 700;
  text-align: center;
  border: none;
}

.comparison-table tbody td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
  background: var(--section-bg);
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--dark-text);
}

.footer-contact p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.footer-contact i {
  color: var(--solarflare-orange);
  margin-right: 0.5rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--solarflare-orange);
}

@media (max-width: 992px) {
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .pricing-card {
    margin-bottom: 2rem;
  }
  
  .comparison-table {
    font-size: 0.85rem;
  }
  
  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 0.75rem 0.5rem;
  }
}