:root {
  /* Primary Colors - Split-complementary scheme */
  --primary-color: #4a6bff;
  --primary-dark: #3452d8;
  --primary-light: #7a8eff;
  --secondary-color: #ff6b4a;
  --secondary-dark: #e45438;
  --secondary-light: #ff8f74;
  --tertiary-color: #4aff9f;
  --tertiary-dark: #38e484;
  --tertiary-light: #74ffb5;

  /* Neutral Colors */
  --neutral-100: #ffffff;
  --neutral-200: #f7f9fc;
  --neutral-300: #edf1f7;
  --neutral-400: #dde3ed;
  --neutral-500: #b0b7c3;
  --neutral-600: #7e8699;
  --neutral-700: #4d5566;
  --neutral-800: #333b4d;
  --neutral-900: #1e2430;

  /* Shadows for Neumorphism */
  --shadow-light: 15px 15px 30px rgba(206, 213, 225, 0.7);
  --shadow-dark: -15px -15px 30px rgba(255, 255, 255, 0.7);
  --inner-shadow: inset 5px 5px 10px rgba(206, 213, 225, 0.7), 
                   inset -5px -5px 10px rgba(255, 255, 255, 0.7);

  /* Typography */
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Source Sans Pro', sans-serif;
  
  /* Border Radius */
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 30px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--neutral-900);
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-normal);
}

a:hover {
  color: var(--primary-dark);
}

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

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

.section-title {
  position: relative;
  margin-bottom: 2.5rem;
  color: var(--neutral-900);
  font-size: 2.5rem;
}

.section-subtitle {
  color: var(--neutral-700);
  margin-bottom: 3rem;
  font-weight: 400;
}

/* Neumorphic UI Elements */
.neumorphic {
  background-color: var(--neutral-200);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-light), var(--shadow-dark);
  transition: all var(--transition-normal);
}

.neumorphic:hover {
  box-shadow: var(--shadow-light), var(--shadow-dark), 0 0 15px rgba(74, 107, 255, 0.3);
}

.neumorphic-inset {
  background-color: var(--neutral-200);
  border-radius: var(--border-radius-md);
  box-shadow: var(--inner-shadow);
}

/* Buttons */
.button {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: none;
}

.button:focus {
  box-shadow: 0 0 0 3px rgba(74, 107, 255, 0.3);
}

.button.is-primary {
  background-color: var(--primary-color);
  color: white;
}

.button.is-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(74, 107, 255, 0.2);
}

.button.is-light {
  background-color: var(--neutral-100);
  color: var(--primary-color);
}

.button.is-light:hover {
  background-color: var(--neutral-200);
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.button.is-rounded {
  border-radius: 50px;
}

.button.is-large {
  font-size: 1.2rem;
  padding: 1.2rem 2.5rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(247, 249, 252, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-normal);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand h1 {
  margin-bottom: 0;
  color: var(--primary-color);
}

.navbar-item {
  font-weight: 600;
  color: var(--neutral-800);
  transition: color var(--transition-normal);
}

.navbar-item:hover {
  color: var(--primary-color);
  background-color: transparent !important;
}

.navbar-burger {
  color: var(--neutral-800);
}

@media screen and (max-width: 1023px) {
  .navbar-menu {
    background-color: var(--neutral-200);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}

.hero-background::after {
  content: '';
  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.3));
}

.hero-body {
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: white !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: white !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 800px;
  color: white !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  margin-top: 2rem;
}

/* Services Section */
.services-section {
  background-color: var(--neutral-100);
}

.service-card {
  height: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  background-color: white;
  margin-bottom: 2rem;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card .card-image {
  width: 100%;
  overflow: hidden;
  border-top-left-radius: var(--border-radius-lg);
  border-top-right-radius: var(--border-radius-lg);
}

.service-card .card-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.service-card .card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card .title {
  color: var(--neutral-900);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card .content {
  color: var(--neutral-700);
  flex-grow: 1;
}

/* Case Studies Section */
.case-studies-section {
  background-color: var(--neutral-200);
  position: relative;
}

.case-study-card {
  height: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  background-color: white;
  margin-bottom: 2rem;
}

.case-study-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.case-study-card .card-image {
  width: 100%;
  overflow: hidden;
}

.case-study-card .card-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.case-study-card .card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.case-study-card .title {
  color: var(--neutral-900);
  margin-bottom: 1rem;
}

.case-study-card .content {
  color: var(--neutral-700);
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--neutral-300);
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 100px;
  margin: 0.5rem;
}

.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--neutral-600);
}

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

.resource-card {
  background-color: white;
  border-radius: var(--border-radius-md);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-normal);
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.resource-card .title a {
  color: var(--neutral-900);
  transition: color var(--transition-normal);
}

.resource-card .title a:hover {
  color: var(--primary-color);
}

.resource-card .content {
  color: var(--neutral-600);
}

/* Sustainability Section */
.sustainability-section {
  background-color: var(--neutral-200);
  position: relative;
}

.sustainability-card {
  height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 2rem;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.sustainability-card .title {
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.sustainability-card .content {
  color: white;
  position: relative;
  z-index: 2;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.sustainability-impact {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  margin-top: 3rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.impact-stat {
  text-align: center;
  padding: 1.5rem;
}

.impact-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.impact-label {
  font-size: 1rem;
  color: var(--neutral-700);
}

.sustainability-pledge {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  margin-top: 3rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Pricing Section */
.pricing-section {
  background-color: var(--neutral-100);
}

.pricing-slider-container {
  max-width: 600px;
  margin: 0 auto 4rem;
  text-align: center;
}

.slider-label {
  display: block;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: var(--neutral-700);
}

.pricing-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 10px;
  border-radius: 5px;
  background: var(--neutral-300);
  outline: none;
  margin-bottom: 1.5rem;
}

.pricing-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(74, 107, 255, 0.5);
  transition: all var(--transition-normal);
}

.pricing-slider::-webkit-slider-thumb:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.slider-labels span {
  font-size: 0.9rem;
  color: var(--neutral-600);
}

.pricing-columns {
  margin-top: 3rem;
}

.pricing-card {
  height: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-normal);
  background-color: white;
  position: relative;
}

.pricing-card.professional {
  transform: translateY(-20px);
  box-shadow: 0 20px 40px rgba(74, 107, 255, 0.2);
  border: 2px solid var(--primary-color);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.professional:hover {
  transform: translateY(-30px);
  box-shadow: 0 30px 60px rgba(74, 107, 255, 0.3);
}

.pricing-card .card-header {
  background-color: var(--neutral-200);
  padding: 2rem;
  text-align: center;
  position: relative;
}

.pricing-card.professional .card-header {
  background-color: var(--primary-color);
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 2rem;
  background-color: var(--secondary-color);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 5px 10px rgba(255, 107, 74, 0.3);
}

.pricing-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.pricing-card.professional .pricing-title {
  color: white;
}

.pricing-amount {
  margin-top: 1rem;
}

.pricing-amount .price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--neutral-900);
}

.pricing-card.professional .pricing-amount .price {
  color: white;
}

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

.pricing-card.professional .pricing-amount .period {
  color: var(--neutral-300);
}

.pricing-card .card-content {
  padding: 2rem;
}

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

.pricing-features li {
  padding: 0.7rem 0;
  position: relative;
  padding-left: 2rem;
  color: var(--neutral-700);
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.pricing-action {
  margin-top: 2rem;
}

.pricing-guarantee {
  margin-top: 3rem;
  text-align: center;
  color: var(--neutral-600);
}

/* Contact Section */
.contact-section {
  background-color: var(--neutral-200);
  position: relative;
}

.contact-info {
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.contact-details {
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-item .icon {
  margin-right: 1rem;
  color: var(--primary-color);
}

.contact-hours {
  margin: 2rem 0;
}

.contact-map {
  margin-top: 2rem;
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.contact-map img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.contact-form-container {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.contact-form .field {
  margin-bottom: 1.5rem;
}

.contact-form .label {
  color: #fff;
  font-weight: 600;
}

.contact-form .input, 
.contact-form .textarea, 
.contact-form .select select {
  background-color: var(--neutral-200);
  border: none;
  box-shadow: var(--inner-shadow);
  border-radius: var(--border-radius-md);
  padding: 1.2rem;
  font-family: var(--body-font);
  transition: all var(--transition-normal);
}

.contact-form .input:focus, 
.contact-form .textarea:focus, 
.contact-form .select select:focus {
  box-shadow: inset 5px 5px 10px rgba(206, 213, 225, 1), 
              inset -5px -5px 10px rgba(255, 255, 255, 1),
              0 0 0 3px rgba(74, 107, 255, 0.3);
}

.checkbox {
  cursor: pointer;
}

.checkbox input {
  margin-right: 0.5rem;
}

/* Footer */
.footer {
  background-color: var(--neutral-900);
  color: var(--neutral-400);
  padding: 5rem 2rem 2rem;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-brand h2 {
  color: white;
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--neutral-500);
  margin-bottom: 1.5rem;
}

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

.social-links a {
  color: var(--neutral-400);
  transition: color var(--transition-normal);
}

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

.footer-title {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

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

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

.footer-links a {
  color: var(--neutral-500);
  transition: color var(--transition-normal);
}

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

.newsletter-form {
  margin-top: 1.5rem;
}

.newsletter-form .input {
  background-color: var(--neutral-800);
  border: none;
  color: white;
  border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
  padding: 0.75rem 1rem;
}

.newsletter-form .button {
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

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

/* Cookie Consent */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(30, 36, 48, 0.95);
  color: white;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-content {
  padding: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin-bottom: 0;
  flex: 1;
  min-width: 280px;
}

.cookie-button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius-md);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.cookie-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Scroll Animations */
.reveal-left,
.reveal-right,
.reveal-top,
.reveal-bottom {
  opacity: 0;
  visibility: hidden;
}

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

.success-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  max-width: 600px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

/* Privacy & Terms Pages */
.privacy-page,
.terms-page {
  padding-top: 100px;
}

.privacy-content,
.terms-content {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .pricing-card.professional {
    transform: none;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  
  .stats-container {
    flex-direction: column;
  }
  
  .stat-item {
    margin-bottom: 1.5rem;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .section {
    padding: 3rem 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .button {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .pricing-amount .price {
    font-size: 2.5rem;
  }
}