/* =================================================================
   VitalFlow - Tech Futuristic Design System
   Modern wellness meets cutting-edge technology
   ================================================================= */

/* ===== CSS RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(45, 122, 79, 0.3);
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: #e0e0e0;
}

a {
  color: #2D7A4F;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #F5A623;
  text-shadow: 0 0 10px rgba(245, 166, 35, 0.5);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ===== HEADER ===== */
header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(45, 122, 79, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 40px rgba(45, 122, 79, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 32px;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(45, 122, 79, 0.5));
  transition: all 0.3s ease;
}

.logo img:hover {
  filter: drop-shadow(0 0 20px rgba(245, 166, 35, 0.8));
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 6px;
  position: relative;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, transparent 0%, transparent 100%);
  border: 1px solid transparent;
}

.main-nav a:hover {
  color: #F5A623;
  background: linear-gradient(135deg, rgba(45, 122, 79, 0.2) 0%, rgba(245, 166, 35, 0.2) 100%);
  border: 1px solid rgba(245, 166, 35, 0.5);
  box-shadow: 0 0 20px rgba(245, 166, 35, 0.3), inset 0 0 20px rgba(245, 166, 35, 0.1);
  transform: translateY(-2px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background: linear-gradient(135deg, #2D7A4F 0%, #1a4d32 100%);
  border: 2px solid rgba(245, 166, 35, 0.5);
  color: #ffffff;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 30px rgba(45, 122, 79, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #F5A623 0%, #d4901f 100%);
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 40px rgba(245, 166, 35, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 24px 24px;
  border-left: 2px solid rgba(45, 122, 79, 0.5);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #F5A623 0%, #d4901f 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 24px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 30px rgba(245, 166, 35, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: linear-gradient(135deg, #d4901f 0%, #F5A623 100%);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 40px rgba(245, 166, 35, 0.6);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 20px;
  border-radius: 8px;
  background: rgba(45, 122, 79, 0.1);
  border: 1px solid rgba(45, 122, 79, 0.3);
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, rgba(45, 122, 79, 0.3) 0%, rgba(245, 166, 35, 0.3) 100%);
  border: 1px solid rgba(245, 166, 35, 0.6);
  color: #F5A623;
  transform: translateX(10px);
  box-shadow: 0 0 20px rgba(245, 166, 35, 0.3), inset 0 0 20px rgba(245, 166, 35, 0.1);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #2D7A4F 0%, #1a4d32 100%);
  color: #ffffff;
  border: 2px solid rgba(245, 166, 35, 0.5);
  box-shadow: 0 4px 15px rgba(45, 122, 79, 0.3), 0 0 30px rgba(45, 122, 79, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1a4d32 0%, #2D7A4F 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 122, 79, 0.4), 0 0 50px rgba(245, 166, 35, 0.4);
  border-color: #F5A623;
}

.btn-secondary {
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.2) 0%, rgba(245, 166, 35, 0.1) 100%);
  color: #F5A623;
  border: 2px solid rgba(245, 166, 35, 0.6);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 30px rgba(245, 166, 35, 0.2);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #F5A623 0%, #d4901f 100%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4), 0 0 50px rgba(245, 166, 35, 0.5);
}

/* ===== HERO SECTIONS ===== */
.hero {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.9) 0%, rgba(26, 31, 58, 0.9) 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45, 122, 79, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 10s ease-in-out infinite reverse;
}

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

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #2D7A4F 50%, #F5A623 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
}

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

.hero-subtitle {
  font-size: 20px;
  color: #e0e0e0;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.trust-indicators span {
  color: #F5A623;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(245, 166, 35, 0.2);
  transition: all 0.3s ease;
}

.trust-indicators span:hover {
  background: rgba(245, 166, 35, 0.2);
  border-color: #F5A623;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(245, 166, 35, 0.4);
}

.hero-inner {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(26, 31, 58, 0.95) 100%);
  padding: 100px 0 60px;
  position: relative;
  border-bottom: 2px solid rgba(45, 122, 79, 0.3);
}

.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  color: #b0b0b0;
}

.breadcrumb a {
  color: #2D7A4F;
  transition: all 0.3s ease;
}

.breadcrumb a:hover {
  color: #F5A623;
  text-shadow: 0 0 10px rgba(245, 166, 35, 0.5);
}

.breadcrumb span {
  color: #ffffff;
}

/* ===== SECTIONS ===== */
section {
  padding: 80px 0;
  position: relative;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-intro,
.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #b0b0b0;
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 0;
}

.text-section p {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.8;
}

.text-section h2 {
  margin-top: 40px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(45, 122, 79, 0.3);
}

.text-section h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #F5A623;
}

.text-section ul,
.text-section ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.text-section li {
  margin-bottom: 12px;
  color: #e0e0e0;
  position: relative;
  padding-left: 24px;
}

.text-section li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: #2D7A4F;
  font-weight: bold;
}

/* ===== CARDS & GRIDS ===== */
.card-container,
.benefits-grid,
.services-grid,
.steps-grid,
.testimonials-grid,
.stats-grid,
.team-grid,
.values-grid,
.methodology-grid,
.measurements-grid,
.process-steps,
.categories-grid,
.classes-grid,
.options-grid,
.packages-grid,
.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

.benefit-card,
.service-card,
.step,
.testimonial-card,
.stat,
.team-member,
.value-item,
.pillar,
.measurement,
.process-step,
.category,
.class-type,
.option,
.package-card,
.article-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(10, 14, 39, 0.8) 100%);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(45, 122, 79, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 40px rgba(45, 122, 79, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before,
.service-card::before,
.step::before,
.measurement::before,
.process-step::before,
.category::before,
.class-type::before,
.option::before,
.package-card::before,
.article-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2D7A4F 0%, #F5A623 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.benefit-card:hover::before,
.service-card:hover::before,
.step:hover::before,
.measurement:hover::before,
.process-step:hover::before,
.category:hover::before,
.class-type:hover::before,
.option:hover::before,
.package-card:hover::before,
.article-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover,
.service-card:hover,
.step:hover,
.measurement:hover,
.process-step:hover,
.category:hover,
.class-type:hover,
.option:hover,
.package-card:hover,
.article-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 166, 35, 0.6);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 60px rgba(245, 166, 35, 0.3);
  background: linear-gradient(135deg, rgba(45, 122, 79, 0.15) 0%, rgba(245, 166, 35, 0.1) 100%);
}

.service-card h3,
.benefit-card h3,
.step h3,
.measurement h3,
.process-step h3,
.category h3,
.class-type h3,
.option h3,
.package-card h3,
.article-card h3 {
  color: #F5A623;
  margin-bottom: 16px;
  font-size: 20px;
}

.service-card p,
.benefit-card p,
.step p,
.measurement p,
.process-step p,
.category p,
.class-type p,
.option p,
.package-card p,
.article-card p {
  color: #e0e0e0;
  font-size: 15px;
  line-height: 1.7;
}

.price,
.service-card .price {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #2D7A4F;
  margin-top: 20px;
  text-shadow: 0 0 15px rgba(45, 122, 79, 0.5);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2D7A4F 0%, #1a4d32 100%);
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 2px solid rgba(245, 166, 35, 0.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 30px rgba(45, 122, 79, 0.4);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.5) 0%, rgba(10, 14, 39, 0.5) 100%);
  padding: 80px 0;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  padding: 32px;
  border: 1px solid rgba(245, 166, 35, 0.2);
  min-width: 320px;
  flex: 1 1 calc(50% - 24px);
}

.rating {
  color: #F5A623;
  font-size: 20px;
  margin-bottom: 16px;
  text-shadow: 0 0 10px rgba(245, 166, 35, 0.5);
}

.testimonial-card p {
  color: #ffffff;
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.customer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(45, 122, 79, 0.3);
}

.customer strong {
  color: #F5A623;
  font-size: 16px;
  font-weight: 700;
}

.customer span {
  color: #b0b0b0;
  font-size: 14px;
}

/* ===== STATS ===== */
.stats {
  background: linear-gradient(135deg, rgba(45, 122, 79, 0.1) 0%, rgba(245, 166, 35, 0.05) 100%);
  padding: 80px 0;
}

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

.stat {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.9) 0%, rgba(10, 14, 39, 0.9) 100%);
  border: 2px solid rgba(45, 122, 79, 0.4);
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #2D7A4F;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(45, 122, 79, 0.6);
}

.stat-label {
  display: block;
  font-size: 16px;
  color: #F5A623;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, rgba(45, 122, 79, 0.2) 0%, rgba(245, 166, 35, 0.15) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(45, 122, 79, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(245, 166, 35, 0.1) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #e0e0e0;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.guarantee,
.trial-offer {
  font-size: 14px;
  color: #b0b0b0;
  font-style: italic;
}

/* ===== SERVICE DETAILS ===== */
.service-detail {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.6) 0%, rgba(10, 14, 39, 0.6) 100%);
  padding: 48px;
  border-radius: 12px;
  margin-bottom: 32px;
  border: 1px solid rgba(45, 122, 79, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.service-detail h2 {
  color: #F5A623;
  margin-bottom: 24px;
  font-size: 28px;
}

.service-content ul {
  margin: 24px 0;
  padding-left: 0;
}

.service-content li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #e0e0e0;
}

.service-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2D7A4F;
  font-weight: bold;
  font-size: 18px;
}

.service-meta {
  display: flex;
  gap: 32px;
  align-items: center;
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(45, 122, 79, 0.3);
  border-bottom: 1px solid rgba(45, 122, 79, 0.3);
}

.duration {
  color: #b0b0b0;
  font-size: 14px;
}

/* ===== PACKAGES ===== */
.package-price {
  font-size: 32px;
  font-weight: 700;
  color: #2D7A4F;
  margin: 24px 0 16px;
  text-shadow: 0 0 20px rgba(45, 122, 79, 0.5);
}

.old-price {
  font-size: 20px;
  color: #b0b0b0;
  text-decoration: line-through;
  margin-right: 12px;
}

.savings {
  display: block;
  color: #F5A623;
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
}

.package-card.highlighted,
.option.highlighted {
  border: 2px solid rgba(245, 166, 35, 0.8);
  background: linear-gradient(135deg, rgba(45, 122, 79, 0.2) 0%, rgba(245, 166, 35, 0.15) 100%);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 60px rgba(245, 166, 35, 0.3);
}

/* ===== BLOG ===== */
.featured-article {
  background: linear-gradient(135deg, rgba(45, 122, 79, 0.15) 0%, rgba(245, 166, 35, 0.1) 100%);
  padding: 48px;
  border-radius: 12px;
  margin-bottom: 48px;
  border: 2px solid rgba(245, 166, 35, 0.3);
}

.featured-label {
  display: inline-block;
  background: linear-gradient(135deg, #F5A623 0%, #d4901f 100%);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.article-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #b0b0b0;
  margin-top: 16px;
}

.category {
  background: rgba(45, 122, 79, 0.2);
  color: #2D7A4F;
  padding: 4px 12px;
  border-radius: 12px;
  font-weight: 600;
}

.category-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 12px 24px;
  background: rgba(26, 31, 58, 0.8);
  color: #ffffff;
  border: 1px solid rgba(45, 122, 79, 0.3);
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #2D7A4F 0%, #1a4d32 100%);
  border-color: #F5A623;
  color: #F5A623;
  box-shadow: 0 4px 15px rgba(45, 122, 79, 0.3), 0 0 30px rgba(245, 166, 35, 0.2);
  transform: translateY(-2px);
}

/* ===== CONTACT ===== */
.contact-grid,
.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.contact-option {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(10, 14, 39, 0.8) 100%);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(45, 122, 79, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-option h3 {
  color: #F5A623;
  margin-bottom: 16px;
  font-size: 20px;
}

.contact-option p {
  color: #e0e0e0;
  line-height: 1.7;
}

.form-wrapper {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(10, 14, 39, 0.8) 100%);
  padding: 48px;
  border-radius: 12px;
  border: 1px solid rgba(45, 122, 79, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.form-note {
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.3);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 32px;
}

.form-note p {
  color: #F5A623;
  font-size: 14px;
  margin-bottom: 12px;
}

.field-group {
  margin-bottom: 24px;
}

.field-group label {
  display: block;
  color: #F5A623;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.field-placeholder {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(45, 122, 79, 0.3);
  padding: 16px;
  border-radius: 6px;
  color: #b0b0b0;
  font-style: italic;
  min-height: 48px;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-hero {
  background: linear-gradient(135deg, rgba(45, 122, 79, 0.2) 0%, rgba(245, 166, 35, 0.15) 100%);
  padding: 100px 0;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #2D7A4F 0%, #1a4d32 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #ffffff;
  margin: 0 auto 32px;
  border: 4px solid rgba(245, 166, 35, 0.5);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 60px rgba(45, 122, 79, 0.5);
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 60px rgba(45, 122, 79, 0.5); }
  50% { transform: scale(1.05); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 80px rgba(245, 166, 35, 0.6); }
}

.confirmation-content {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(10, 14, 39, 0.8) 100%);
  padding: 48px;
  border-radius: 12px;
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid rgba(45, 122, 79, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.action-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(10, 14, 39, 0.8) 100%);
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(45, 122, 79, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.action-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 166, 35, 0.6);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 60px rgba(245, 166, 35, 0.3);
}

.action-card h3 {
  color: #F5A623;
  margin-bottom: 16px;
}

.action-card .btn {
  margin-top: 20px;
}

.nav-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== NEWSLETTER ===== */
.newsletter-signup {
  background: linear-gradient(135deg, rgba(45, 122, 79, 0.15) 0%, rgba(245, 166, 35, 0.1) 100%);
  padding: 80px 0;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-benefits {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

.newsletter-benefits li {
  background: rgba(45, 122, 79, 0.2);
  padding: 12px 20px;
  border-radius: 20px;
  color: #2D7A4F;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(45, 122, 79, 0.4);
}

.newsletter-note {
  font-size: 12px;
  color: #b0b0b0;
  margin-top: 16px;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.98) 0%, rgba(0, 0, 0, 0.98) 100%);
  padding: 60px 0 24px;
  border-top: 2px solid rgba(45, 122, 79, 0.3);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-col h4 {
  color: #F5A623;
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  color: #b0b0b0;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #e0e0e0;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #F5A623;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(45, 122, 79, 0.2);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: #808080;
  font-size: 14px;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.98) 0%, rgba(26, 31, 58, 0.98) 100%);
  backdrop-filter: blur(10px);
  padding: 24px;
  z-index: 1500;
  border-top: 2px solid rgba(45, 122, 79, 0.5);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5), 0 0 60px rgba(45, 122, 79, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  color: #e0e0e0;
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background: linear-gradient(135deg, #2D7A4F 0%, #1a4d32 100%);
  color: #ffffff;
  border-color: rgba(245, 166, 35, 0.5);
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #1a4d32 0%, #2D7A4F 100%);
  box-shadow: 0 4px 15px rgba(45, 122, 79, 0.4), 0 0 30px rgba(245, 166, 35, 0.3);
  transform: translateY(-2px);
}

.cookie-reject {
  background: rgba(255, 255, 255, 0.05);
  color: #e0e0e0;
  border-color: rgba(255, 255, 255, 0.2);
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.cookie-settings {
  background: transparent;
  color: #F5A623;
  border-color: rgba(245, 166, 35, 0.5);
}

.cookie-settings:hover {
  background: rgba(245, 166, 35, 0.1);
  border-color: #F5A623;
  box-shadow: 0 0 20px rgba(245, 166, 35, 0.3);
}

/* ===== COOKIE MODAL ===== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.98) 0%, rgba(10, 14, 39, 0.98) 100%);
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border-radius: 12px;
  border: 2px solid rgba(45, 122, 79, 0.5);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 80px rgba(45, 122, 79, 0.3);
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(45, 122, 79, 0.3);
}

.cookie-modal-header h3 {
  color: #F5A623;
  margin: 0;
}

.cookie-modal-close {
  background: transparent;
  border: none;
  color: #e0e0e0;
  font-size: 28px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: rgba(245, 166, 35, 0.2);
  color: #F5A623;
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(45, 122, 79, 0.2);
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.category-header h4 {
  color: #ffffff;
  margin: 0;
  font-size: 16px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(45, 122, 79, 0.3);
}

.toggle-switch.active {
  background: linear-gradient(135deg, #2D7A4F 0%, #1a4d32 100%);
  border-color: #F5A623;
  box-shadow: 0 0 15px rgba(45, 122, 79, 0.5);
}

.toggle-switch::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.toggle-switch.active::before {
  left: 26px;
  background: #F5A623;
}

.toggle-switch.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.category-description {
  color: #b0b0b0;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-modal-footer {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(45, 122, 79, 0.3);
  flex-wrap: wrap;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  /* Navigation */
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  
  /* Hero */
  .hero { padding: 80px 0 60px; }
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  .hero-cta { flex-direction: column; }
  .trust-indicators { gap: 16px; }
  
  /* Sections */
  section { padding: 60px 0; }
  
  /* Cards & Grids */
  .benefit-card,
  .service-card,
  .step,
  .testimonial-card,
  .stat,
  .team-member,
  .value-item,
  .pillar,
  .measurement,
  .process-step,
  .category,
  .class-type,
  .option,
  .package-card,
  .article-card,
  .contact-option,
  .action-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer */
  .footer-content { gap: 32px; }
  .footer-col { flex: 1 1 100%; }
  
  /* Cookie Banner */
  .cookie-content { flex-direction: column; align-items: stretch; }
  .cookie-buttons { justify-content: stretch; }
  .cookie-btn { flex: 1; }
  
  /* Forms */
  .form-wrapper { padding: 32px 24px; }
  
  /* Service Details */
  .service-detail { padding: 32px 24px; }
  .service-meta { flex-direction: column; gap: 16px; }
}

@media (max-width: 480px) {
  /* Container */
  .container { padding: 0 16px; }
  
  /* Typography */
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  /* Buttons */
  .btn { padding: 14px 24px; font-size: 14px; }
  
  /* Hero */
  .hero h1 { font-size: 28px; }
  
  /* Mobile Menu */
  .mobile-menu { width: 100%; }
  
  /* Stats */
  .stat-number { font-size: 36px; }
  
  /* Cookie Modal */
  .cookie-modal-content { padding: 24px; }
  .cookie-modal-footer { flex-direction: column; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ===== ACCESSIBILITY ===== */
:focus {
  outline: 2px solid #F5A623;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #F5A623;
  outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
  header, footer, .mobile-menu-toggle, .cookie-banner { display: none; }
  body { background: white; color: black; }
  a { color: black; text-decoration: underline; }
}