:root {
  /* Monochromatic Color Scheme */
  --primary-color: #374151;
  --primary-dark: #1f2937;
  --primary-light: #4b5563;
  --primary-lighter: #6b7280;
  --primary-lightest: #9ca3af;
  --accent-color: #f97316;
  --accent-dark: #ea580c;
  --accent-light: #fb923c;
  --text-dark: #111827;
  --text-light: #f9fafb;
  --text-muted: #d1d5db;
  --bg-light: #f3f4f6;
  --bg-dark: #1f2937;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --error-color: #ef4444;
  --warning-color: #f59e0b;
  
  /* Brutalism Design Variables */
  --brutalism-shadow: 8px 8px 0 rgba(0, 0, 0, 0.8);
  --brutalism-border: 3px solid var(--primary-dark);
  --brutalism-radius: 0;
  
  /* Biomorphic Design Variables */
  --bio-radius: 30px;
  --bio-blob-radius: 71% 29% 70% 30% / 53% 51% 49% 47%;
  
  /* Animation Timing */
  --anim-slow: 1.2s;
  --anim-medium: 0.8s;
  --anim-fast: 0.3s;
}

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

body {
  font-family: 'Work Sans', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  background-color: var(--bg-light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: var(--primary-dark);
  transition: color var(--anim-fast) ease-in-out;
}

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

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

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-lighter);
}

.container {
  padding: 0 1.5rem;
}

/* Brutalist Button Styles */
.btn, 
button, 
input[type='submit'] {
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--primary-dark);
  color: var(--text-light);
  border: var(--brutalism-border);
  border-radius: var(--brutalism-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--anim-fast) ease;
  box-shadow: var(--brutalism-shadow);
  z-index: 1;
}

.btn:hover, 
button:hover, 
input[type='submit']:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.8);
  color: var(--text-light);
}

.btn:active, 
button:active, 
input[type='submit']:active {
  transform: translate(0, 0);
  box-shadow: var(--brutalism-shadow);
}

.btn-primary, 
button.primary, 
input[type='submit'].primary {
  background-color: var(--accent-color);
  border-color: var(--accent-dark);
}

.btn-outline-light {
  background-color: transparent;
  border: 3px solid var(--text-light);
  color: var(--text-light);
}

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

/* Header / Navigation */
.header-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--primary-dark);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.header-section.scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 0.7rem 0;
}

.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-brand:hover {
  color: var(--accent-color);
}

.navbar-nav .nav-link {
  color: var(--text-light);
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
  transition: all var(--anim-fast) ease;
}

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

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: all var(--anim-fast) ease;
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
  left: 10%;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  z-index: 0;
}

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

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  animation: fadeInDown var(--anim-medium) ease-out;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp var(--anim-medium) ease-out;
  animation-delay: 0.2s;
  animation-fill-mode: both;
  color: #FFFFFF;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  animation: fadeIn var(--anim-medium) ease-out;
  animation-delay: 0.4s;
  animation-fill-mode: both;
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.feature-card {
  background-color: white;
  padding: 2rem;
  border: var(--brutalism-border);
  border-radius: var(--brutalism-radius);
  box-shadow: var(--brutalism-shadow);
  height: 100%;
  transition: all var(--anim-fast) ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.feature-card p {
  color: var(--text-dark);
  margin-bottom: 0;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background-color: white;
}

.service-card {
  height: 100%;
  border: var(--brutalism-border);
  border-radius: var(--brutalism-radius);
  overflow: hidden;
  box-shadow: var(--brutalism-shadow);
  transition: all var(--anim-fast) ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-10px);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--anim-medium) ease;
}

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

.card-content {
  padding: 1.5rem;
  text-align: center;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.service-card p {
  color: var(--text-dark);
  margin-bottom: 0;
}

/* Statistics Section */
.statistics-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.stat-card {
  padding: 2rem;
  text-align: center;
  background-color: white;
  border: var(--brutalism-border);
  border-radius: var(--brutalism-radius);
  box-shadow: var(--brutalism-shadow);
  height: 100%;
  transition: all var(--anim-fast) ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

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

.stat-text {
  font-size: 1.1rem;
  color: var(--primary-dark);
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 0;
  background-color: white;
}

.pricing-card {
  height: 100%;
  border: var(--brutalism-border);
  border-radius: var(--brutalism-radius);
  overflow: hidden;
  box-shadow: var(--brutalism-shadow);
  transition: all var(--anim-fast) ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
}

.pricing-card.featured {
  transform: scale(1.05);
  border-color: var(--accent-color);
  z-index: 2;
}

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

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

.pricing-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.pricing-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-header {
  padding: 1.5rem;
  text-align: center;
  width: 100%;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.pricing-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
}

.pricing-features {
  padding: 1.5rem;
  width: 100%;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-footer {
  padding: 1.5rem;
  width: 100%;
  text-align: center;
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.gallery-carousel {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.gallery-item {
  flex: 0 0 300px;
  height: 400px;
  position: relative;
  border: var(--brutalism-border);
  border-radius: var(--brutalism-radius);
  overflow: hidden;
  box-shadow: var(--brutalism-shadow);
  scroll-snap-align: start;
  transition: all var(--anim-fast) ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--text-light);
  transition: transform var(--anim-fast) ease;
}

.gallery-caption h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.gallery-caption p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background-color: white;
}

.testimonials-carousel {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.testimonial-item {
  flex: 0 0 calc(100% - 2rem);
  max-width: 800px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  border: var(--brutalism-border);
  border-radius: var(--brutalism-radius);
  box-shadow: var(--brutalism-shadow);
  background-color: var(--bg-light);
  transition: all var(--anim-fast) ease;
}

.testimonial-item:hover {
  transform: translateY(-5px);
}

.testimonial-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

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

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

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-dark);
}

@media (min-width: 768px) {
  .testimonial-item {
    flex: 0 0 calc(50% - 1.5rem);
    flex-direction: row;
    text-align: left;
  }
  
  .testimonial-image {
    margin-right: 2rem;
    margin-bottom: 0;
  }
  
  .testimonial-content {
    text-align: left;
  }
}

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

.resource-card {
  padding: 2rem;
  background-color: white;
  border: var(--brutalism-border);
  border-radius: var(--brutalism-radius);
  box-shadow: var(--brutalism-shadow);
  height: 100%;
  transition: all var(--anim-fast) ease;
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.resource-title a {
  color: var(--primary-dark);
  transition: all var(--anim-fast) ease;
}

.resource-title a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.resource-description {
  color: var(--text-dark);
  margin-bottom: 0;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: white;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.contact-item p {
  color: var(--text-dark);
  margin-bottom: 0;
}

.contact-form {
  padding: 2rem;
  background-color: var(--bg-light);
  border: var(--brutalism-border);
  border-radius: var(--brutalism-radius);
  box-shadow: var(--brutalism-shadow);
}

.form-control {
  border: 2px solid var(--primary-dark);
  border-radius: var(--brutalism-radius);
  padding: 0.8rem 1rem;
  font-family: 'Work Sans', sans-serif;
  transition: all var(--anim-fast) ease;
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

label {
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

/* Footer Section */
.footer-section {
  padding: 5rem 0 2rem;
  background-color: var(--primary-dark);
  color: var(--text-light);
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.footer-text {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

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

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

.footer-links a {
  color: var(--text-muted);
  transition: all var(--anim-fast) ease;
}

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

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

.social-links a {
  color: var(--text-muted);
  transition: all var(--anim-fast) ease;
  padding: 0.5rem 1rem;
  border: 1px solid var(--primary-lighter);
  border-radius: var(--brutalism-radius);
}

.social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.newsletter h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.newsletter p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.newsletter-form .input-group {
  border: 2px solid var(--primary-lighter);
  border-radius: var(--brutalism-radius);
  overflow: hidden;
}

.newsletter-form .form-control {
  border: none;
  background-color: var(--primary-light);
  color: var(--text-light);
}

.newsletter-form .form-control::placeholder {
  color: var(--primary-lightest);
}

.newsletter-form .btn {
  border-radius: 0;
  box-shadow: none;
}

.copyright {
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Cookie Consent */
#cookie-consent {
  border-top: var(--brutalism-border);
}

#accept-cookies {
  margin-top: 1rem;
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.success-container {
  max-width: 600px;
  padding: 3rem;
  background-color: white;
  border: var(--brutalism-border);
  border-radius: var(--brutalism-radius);
  box-shadow: var(--brutalism-shadow);
}

.success-icon {
  font-size: 5rem;
  color: var(--success-color);
  margin-bottom: 2rem;
}

.success-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

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

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

/* Content Pages (About, Terms, Privacy, etc.) */
.content-page {
  padding-top: 100px;
  padding-bottom: 5rem;
}

.content-page .container {
  max-width: 800px;
}

.content-page h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--primary-dark);
}

.content-page h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

.content-page p {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blob {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding: 7rem 0 4rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .gallery-item {
    flex: 0 0 250px;
    height: 350px;
  }
}

/* Read More Links */
.read-more {
  display: inline-block;
  font-weight: 600;
  color: var(--accent-color);
  margin-top: 0.5rem;
  position: relative;
  padding-right: 20px;
}

.read-more::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--anim-fast) ease;
}

.read-more:hover {
  color: var(--accent-dark);
}

.read-more:hover::after {
  transform: translate(5px, -50%);
}