/* CSS Variables - Brutalist Color Scheme with Dynamic Gradients */
:root {
  /* Primary Colors - Complementary Color Scheme */
  --primary-color: #FF6B35;
  --primary-dark: #E55529;
  --primary-light: #FF8A65;
  --secondary-color: #35B3FF;
  --secondary-dark: #2A8FCC;
  --secondary-light: #65C3FF;
  
  /* Accent Colors */
  --accent-orange: #FF9F00;
  --accent-purple: #9C27B0;
  --accent-green: #4CAF50;
  --accent-pink: #E91E63;
  
  /* Neutral Colors */
  --dark-color: #1A1A1A;
  --light-color: #FFFFFF;
  --gray-100: #F5F5F5;
  --gray-200: #EEEEEE;
  --gray-300: #E0E0E0;
  --gray-400: #BDBDBD;
  --gray-500: #9E9E9E;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;
  
  /* Dynamic Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-orange) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-purple) 100%);
  --gradient-brutalist: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-pink) 100%);
  --gradient-overlay: linear-gradient(45deg, rgba(255, 107, 53, 0.9) 0%, rgba(53, 179, 255, 0.9) 100%);
  --gradient-dark: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-800) 100%);
  
  /* Typography */
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Rubik', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 6rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-brutal: 0px;
  
  /* Shadows */
  --shadow-brutal: 8px 8px 0px var(--dark-color);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.2);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-elastic: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Base Styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

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

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-weight: 600;
}

p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
  color: var(--gray-700);
}

/* Global Button Styles - Brutalist Design */
.btn, button, input[type='submit'] {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2rem;
  border: 3px solid var(--dark-color);
  border-radius: var(--radius-brutal);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-bounce);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary-brutalist {
  background: var(--gradient-primary);
  color: var(--light-color);
  border-color: var(--dark-color);
  box-shadow: var(--shadow-brutal);
}

.btn-primary-brutalist:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0px var(--dark-color);
  background: var(--gradient-secondary);
}

.btn-secondary-brutalist {
  background: var(--light-color);
  color: var(--dark-color);
  border-color: var(--dark-color);
  box-shadow: var(--shadow-brutal);
}

.btn-secondary-brutalist:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0px var(--dark-color);
  background: var(--gradient-primary);
  color: var(--light-color);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-sm);
  box-shadow: none;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: var(--light-color);
  transform: translateY(-2px);
}

/* Header Styles - Brutalist Navigation */
.header-brutalist {
  background: var(--gradient-dark);
  border-bottom: 4px solid var(--primary-color);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand .brand-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--light-color);
  text-decoration: none;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--light-color) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  border: 2px solid transparent;
  border-radius: var(--radius-brutal);
  transition: all var(--transition-fast);
}

.nav-link:hover {
  border-color: var(--primary-color);
  background: var(--primary-color);
  transform: translateY(-2px);
}

.navbar-toggler {
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-brutal);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
padding: 7rem 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--light-color) !important;
  text-shadow: 3px 3px 0px var(--dark-color);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--light-color) !important;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-lg);
}

/* Statistics Widget */
.stats-container {
  margin-top: var(--spacing-xl);
}

.stat-widget {
  text-align: center;
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
}

.stat-widget:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--light-color);
  text-shadow: 2px 2px 0px var(--dark-color);
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--light-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: var(--spacing-xs);
}

/* Section Titles */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
  color: var(--dark-color);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* Vision Section */
.vision-section {
  padding: var(--spacing-xxl) 0;
  background: var(--gray-100);
}

.vision-content {
  padding: var(--spacing-lg);
}

.vision-subtitle {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.vision-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: var(--spacing-lg);
}

.vision-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.vision-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all var(--transition-smooth);
}

.vision-image:hover img {
  transform: scale(1.05);
}

/* Progress Indicators */
.progress-indicators {
  margin-top: var(--spacing-lg);
}

.progress-item {
  margin-bottom: var(--spacing-md);
}

.progress-item label {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: var(--spacing-xs);
  display: block;
}

.progress-bar-container {
  width: 100%;
  height: 12px;
  background: var(--gray-300);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 6px;
  transition: width var(--transition-elastic);
  position: relative;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Methodology Section */
.methodology-section {
  padding: var(--spacing-xxl) 0;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
}

.methodology-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.methodology-section .container {
  position: relative;
  z-index: 2;
}

.methodology-card {
  background: rgba(255, 255, 255, 0.95);
  border: 3px solid var(--dark-color);
  border-radius: var(--radius-brutal);
  box-shadow: var(--shadow-brutal);
  transition: all var(--transition-bounce);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.methodology-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0px var(--dark-color);
}

.methodology-card .card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.methodology-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-smooth);
}

.methodology-card:hover .card-image img {
  transform: scale(1.1);
}

.methodology-card .card-content {
  padding: var(--spacing-md);
  text-align: center;
}

.methodology-card h4 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.methodology-card p {
  color: var(--gray-700);
  line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
  padding: var(--spacing-xxl) 0;
  background: var(--gray-100);
  overflow: hidden;
}

.carousel-container {
  position: relative;
  margin-top: var(--spacing-lg);
}

.content-carousel {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-track {
  display: flex;
  gap: var(--spacing-md);
  transition: transform var(--transition-smooth);
}

.carousel-slide {
  flex: 0 0 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.gallery-item .card-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-smooth);
}

.gallery-item:hover .card-image img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gradient-overlay);
  color: var(--light-color);
  padding: var(--spacing-md);
  transform: translateY(100%);
  transition: all var(--transition-smooth);
  text-align: center;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  color: var(--light-color);
  margin-bottom: var(--spacing-xs);
}

.gallery-overlay p {
  color: var(--light-color);
  margin: 0;
  opacity: 0.9;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border: 3px solid var(--dark-color);
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--light-color);
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: all var(--transition-bounce);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-brutal);
}

/* Resources Section */
.resources-section {
  padding: var(--spacing-xxl) 0;
  background: var(--light-color);
}

.resource-card {
  background: var(--light-color);
  border: 3px solid var(--dark-color);
  border-radius: var(--radius-brutal);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-brutal);
  transition: all var(--transition-bounce);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.resource-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0px var(--dark-color);
  background: var(--gray-100);
}

.resource-card h4 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.resource-card p {
  color: var(--gray-700);
  flex-grow: 1;
  margin-bottom: var(--spacing-md);
}

/* Pricing Section */
.pricing-section {
  padding: var(--spacing-xxl) 0;
  background: var(--gray-100);
}

.pricing-card {
  background: var(--light-color);
  border: 3px solid var(--dark-color);
  border-radius: var(--radius-brutal);
  box-shadow: var(--shadow-brutal);
  transition: all var(--transition-bounce);
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.pricing-card.featured {
  border-color: var(--primary-color);
  background: var(--gradient-primary);
  color: var(--light-color);
  transform: scale(1.05);
}

.pricing-card.featured .card-content h3,
.pricing-card.featured .price,
.pricing-card.featured .features li {
  color: var(--light-color);
}

.pricing-card:hover {
  transform: translate(-4px, -4px) scale(1.02);
  box-shadow: 12px 12px 0px var(--dark-color);
}

.pricing-card.featured:hover {
  transform: translate(-4px, -4px) scale(1.07);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--accent-orange);
  color: var(--light-color);
  padding: 0.5rem 3rem;
  transform: rotate(45deg);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-content {
  padding: var(--spacing-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: var(--spacing-md) 0;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
}

.amount {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0.25rem;
  color: var(--primary-color);
}

.period {
  font-size: 1rem;
  color: var(--gray-600);
}

.features {
  list-style: none;
  padding: 0;
  margin: var(--spacing-md) 0;
  flex-grow: 1;
}

.features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
}

.features li:before {
  content: "✓";
  color: var(--accent-green);
  font-weight: bold;
  margin-right: var(--spacing-xs);
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--spacing-xxl) 0;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
}

.testimonials-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.testimonials-section .container {
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border: 3px solid var(--dark-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-brutal);
  transition: all var(--transition-bounce);
  height: 100%;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0px var(--dark-color);
}

.testimonial-card .card-content {
  padding: var(--spacing-lg);
  text-align: center;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-color);
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

blockquote {
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--gray-700);
  margin: 0 0 var(--spacing-md) 0;
  position: relative;
}

blockquote:before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-color);
  position: absolute;
  top: -20px;
  left: -20px;
  font-family: serif;
}

cite {
  text-align: center;
  display: block;
}

cite strong {
  color: var(--dark-color);
  font-weight: 600;
}

cite span {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
  padding: var(--spacing-xxl) 0;
  background: var(--light-color);
}

.contact-form-container {
  background: var(--gray-100);
  border: 3px solid var(--dark-color);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-brutal);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: var(--spacing-xs);
  display: block;
}

.form-control, .form-select {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--gray-400);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: all var(--transition-fast);
  background: var(--light-color);
}

.form-control:focus, .form-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer-brutalist {
  background: var(--gradient-dark);
  color: var(--light-color);
  padding: var(--spacing-xxl) 0 var(--spacing-lg) 0;
  border-top: 4px solid var(--primary-color);
}

.footer-section h4, .footer-section h5 {
  color: var(--light-color);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
}

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

.footer-section p {
  color: var(--gray-300);
  line-height: 1.6;
}

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

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a {
  color: var(--gray-300);
  text-decoration: none;
  transition: all var(--transition-fast);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--primary-color);
  text-decoration: underline;
  transform: translateX(4px);
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.social-links a {
  color: var(--gray-300);
  text-decoration: none;
  padding: 0.75rem;
  border: 2px solid var(--gray-600);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.social-links a:hover {
  color: var(--light-color);
  border-color: var(--primary-color);
  background: var(--primary-color);
  transform: translateY(-2px);
}

.footer-contact p {
  color: var(--gray-300);
  margin-bottom: var(--spacing-xs);
}

.footer-divider {
  border-color: var(--gray-600);
  margin: var(--spacing-lg) 0;
}

.footer-bottom {
  padding-top: var(--spacing-md);
}

.footer-bottom p {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin: 0;
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  position: relative;
}

.success-content {
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  max-width: 600px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.success-icon {
  font-size: 4rem;
  color: var(--accent-green);
  margin-bottom: var(--spacing-md);
}

/* Privacy & Terms Pages */
.legal-page {
  padding-top: 120px;
  padding-bottom: var(--spacing-xxl);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--light-color);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.legal-content h1 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.legal-content h2 {
  color: var(--dark-color);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-xs);
  border-bottom: 2px solid var(--primary-color);
}

.legal-content p, .legal-content li {
  color: var(--gray-700);
  line-height: 1.7;
}

.legal-content ul {
  padding-left: var(--spacing-md);
}

/* Animation Classes */
.animate-slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s var(--transition-elastic) forwards;
}

.animate-slide-up:nth-child(2) {
  animation-delay: 0.2s;
}

.animate-slide-up:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1s var(--transition-smooth) forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.animate-bounce-in {
  opacity: 0;
  transform: scale(0.8);
  animation: bounceIn 0.6s var(--transition-bounce) forwards;
}

@keyframes bounceIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.shadow-brutal {
  box-shadow: var(--shadow-brutal);
}

.border-brutal {
  border: 3px solid var(--dark-color);
}

/* Parallax Effect */
.parallax-bg {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .stats-container {
    margin-top: var(--spacing-md);
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .carousel-slide {
    flex: 0 0 280px;
  }
  
  .methodology-card,
  .gallery-item,
  .testimonial-card,
  .pricing-card {
    margin-bottom: var(--spacing-md);
  }
  
  .parallax-bg {
    background-attachment: scroll;
  }
  
  .social-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer-section {
    text-align: center;
    margin-bottom: var(--spacing-lg);
  }
}

@media (max-width: 576px) {
  :root {
    --spacing-xxl: 3rem;
    --spacing-xl: 2rem;
    --spacing-lg: 1.5rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .carousel-slide {
    flex: 0 0 260px;
  }
  
  .contact-form-container,
  .legal-content {
    padding: var(--spacing-md);
  }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print Styles */
@media print {
  .header-brutalist,
  .footer-brutalist,
  .carousel-controls,
  .btn {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .hero-section,
  .methodology-section,
  .testimonials-section {
    background: white !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #000;
    --secondary-color: #fff;
    --dark-color: #000;
    --light-color: #fff;
    --gray-700: #000;
  }
}