/* Root Variables */
:root {
  /* Pastel Color Scheme */
  --primary-color: #93c5fd;
  --primary-dark: #60a5fa;
  --secondary-color: #fcd34d;
  --secondary-dark: #fbbf24;
  --accent-color: #a78bfa;
  --accent-dark: #8b5cf6;
  --success-color: #a7f3d0;
  --success-dark: #6ee7b7;
  --warning-color: #fde68a;
  --warning-dark: #fcd34d;
  --error-color: #fca5a5;
  --error-dark: #f87171;
  --light-color: #f3f4f6;
  --light-dark: #e5e7eb;
  --dark-color: #4b5563;
  --dark-darker: #374151;
  --text-color: #1f2937;
  --text-light: #6b7280;
  --white: #ffffff;
  --black: #000000;
  
  /* Neumorphism Shadows */
  --neumorph-light: 5px 5px 10px rgba(0, 0, 0, 0.1),
                  -5px -5px 10px rgba(255, 255, 255, 0.7);
  --neumorph-dark: inset 3px 3px 6px rgba(0, 0, 0, 0.1),
                 inset -3px -3px 6px rgba(255, 255, 255, 0.7);
  --neumorph-flat: 0 0 0 rgba(0, 0, 0, 0),
                 0 0 0 rgba(255, 255, 255, 0);
  
  /* Typography */
  --heading-font: 'Oswald', sans-serif;
  --body-font: 'Nunito', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  
  /* Border Radius */
  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 15px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Container */
  --container-width: 1200px;
  --container-padding: 1.5rem;
}

/* Global Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--dark-darker);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--space-md);
}

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

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

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

ul, ol {
  list-style-position: inside;
  margin-bottom: var(--space-md);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Sections */
section {
  padding: var(--space-xxl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: var(--space-sm) auto;
  border-radius: var(--radius-full);
}

/* Neumorphism Elements */
.neumorph-section {
  background-color: var(--light-color);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
}

.neumorph-card {
  background-color: var(--light-color);
  border-radius: var(--radius-md);
  box-shadow: var(--neumorph-light);
  padding: var(--space-lg);
  margin: var(--space-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.neumorph-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1),
              -8px -8px 16px rgba(255, 255, 255, 0.7);
}

.neumorph-input {
  background-color: var(--light-color);
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--neumorph-dark);
  padding: var(--space-md);
  width: 100%;
  font-family: var(--body-font);
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: var(--space-md);
  transition: box-shadow var(--transition-fast);
}

.neumorph-input:focus {
  outline: none;
  box-shadow: var(--neumorph-light);
}

.neumorph-header, .neumorph-footer {
  background-color: var(--light-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn, button, input[type='submit'] {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 1rem;
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  box-shadow: var(--neumorph-light);
}

.btn:hover, button:hover, input[type='submit']:hover {
  color: #fff;
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.1),
              -6px -6px 12px rgba(255, 255, 255, 0.7);
}

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

.btn.secondary {
  background-color: var(--secondary-color);
}

.btn.secondary:hover {
  background-color: var(--secondary-dark);
}

.btn.small {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
}

/* Header & Navigation */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: background-color var(--transition-normal);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--heading-font);
  font-size: 1.75rem;
  font-weight: 700;
}

.logo a {
  color: var(--dark-darker);
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
}

.desktop-nav li {
  margin-left: var(--space-lg);
}

.desktop-nav a {
  color: var(--dark-color);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.desktop-nav a:hover {
  color: var(--primary-color);
}

.mobile-nav-toggle {
  display: none;
  cursor: pointer;
}

.hamburger {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--dark-color);
  position: relative;
}

.hamburger::before, .hamburger::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--dark-color);
  position: absolute;
  left: 0;
  transition: transform var(--transition-normal);
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--light-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: var(--space-md) 0;
}

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

.mobile-nav li {
  padding: var(--space-sm) var(--space-lg);
}

.mobile-nav a {
  display: block;
  color: var(--dark-color);
  font-weight: 600;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-toggle.active .hamburger {
  background-color: transparent;
}

.mobile-nav-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-nav-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
}

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

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

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

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: var(--space-md);
  color: var(--white);
}

.hero-content h2 {
  font-size: 2rem;
  margin-bottom: var(--space-lg);
  color: var(--white);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
  color: var(--white);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

/* Methodology Section */
.methodology-section {
  background-color: var(--white);
}

.progress-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: var(--space-xl);
}

.progress-item {
  flex: 1;
  min-width: 300px;
  text-align: center;
  padding: var(--space-md);
  margin: var(--space-md);
}

.progress-circle {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-md);
}

.progress-svg {
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
}

.progress-bar-bg, .progress-bar {
  fill: none;
  stroke-width: 10;
  cx: 60;
  cy: 60;
  r: 54;
}

.progress-bar-bg {
  stroke: var(--light-dark);
}

.progress-bar {
  stroke: var(--primary-color);
  stroke-dasharray: 339.3;
  stroke-dashoffset: calc(339.3 - (339.3 * var(--percentage)) / 100);
  transition: stroke-dashoffset 1s ease;
}

.percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.methodology-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xl);
}

.methodology-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.methodology-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--neumorph-light);
}

.methodology-text {
  flex: 1;
  min-width: 300px;
}

/* Behind the Scenes Section */
.behind-scenes-section {
  background-color: var(--light-color);
}

.scenes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.scene-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-image {
  width: 100%;
  height: 250px;
  margin-bottom: var(--space-md);
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--neumorph-light);
}

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

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

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

.scenes-expanded {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xl);
}

.expanded-content {
  flex: 1;
  min-width: 300px;
}

.expanded-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.expanded-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--neumorph-light);
}

/* Our Process Section */
.process-section {
  background-color: var(--white);
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: var(--primary-color);
}

.timeline-item {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding-right: 30px;
  margin-bottom: var(--space-xl);
  width: 50%;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-left: 30px;
  padding-right: 0;
  margin-left: auto;
}

.timeline-marker {
  position: absolute;
  top: 20px;
  right: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--primary-color);
  box-shadow: var(--neumorph-light);
}

.timeline-item:nth-child(even) .timeline-marker {
  right: auto;
  left: -8px;
}

.timeline-content {
  width: 100%;
  max-width: 350px;
}

.timeline-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--neumorph-light);
}

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

/* Sustainability Section */
.sustainability-section {
  background-color: var(--light-color);
}

.sustainability-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--space-lg);
}

.sustainability-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Resources Section */
.resources-section {
  background-color: var(--white);
}

.resources-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

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

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

.resource-links li {
  margin-bottom: var(--space-sm);
}

.resource-links a {
  display: inline-block;
  padding: var(--space-sm) 0;
  transition: color var(--transition-fast);
}

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

/* Testimonials Section */
.testimonials-section {
  background-color: var(--light-color);
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.testimonial-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: var(--space-md);
  box-shadow: var(--neumorph-light);
}

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

.testimonial-content {
  margin-top: var(--space-md);
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: var(--space-md);
}

.testimonial-title {
  color: var(--text-light);
  font-size: 0.875rem;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

.prev-testimonial, .next-testimonial {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--light-color);
  box-shadow: var(--neumorph-light);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.prev-testimonial:hover, .next-testimonial:hover {
  box-shadow: var(--neumorph-dark);
}

.arrow-left, .arrow-right {
  border: solid var(--dark-color);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 5px;
}

.arrow-left {
  transform: rotate(135deg);
}

.arrow-right {
  transform: rotate(-45deg);
}

/* Customer Stories Section */
.customer-stories-section {
  background-color: var(--white);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--space-lg);
}

.story-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Insights Section */
.insights-section {
  background-color: var(--light-color);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

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

.insight-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--neumorph-light);
}

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

/* Events Section */
.events-section {
  background-color: var(--white);
}

.events-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.event-card {
  display: flex;
  margin-bottom: var(--space-lg);
  align-items: flex-start;
}

.event-date {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  min-width: 100px;
  margin-right: var(--space-lg);
  box-shadow: var(--neumorph-light);
}

.event-date .month, .event-date .year {
  display: block;
  font-size: 1rem;
}

.event-date .day {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin: var(--space-xs) 0;
}

.event-content {
  flex: 1;
}

.event-location {
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

/* Press Section */
.press-section {
  background-color: var(--light-color);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.press-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.press-image {
  width: 100%;
  max-width: 300px;
  height: 400px;
  margin-bottom: var(--space-md);
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--neumorph-light);
}

.press-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

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

.publication-date {
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

/* Contact Section */
.contact-section {
  background-color: var(--white);
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.contact-info {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.info-card h3 {
  margin-bottom: var(--space-md);
}

.map-container {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: var(--space-md);
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

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

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

/* Footer Section */
.footer-section {
  background-color: var(--dark-color);
  color: var(--white);
  padding: var(--space-xl) 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-logo {
  flex: 1;
  min-width: 300px;
}

.footer-logo h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.link-group {
  flex: 1;
  min-width: 200px;
}

.link-group h3 {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
}

.link-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-group li {
  margin-bottom: var(--space-sm);
}

.link-group a {
  color: var(--light-color);
  transition: color var(--transition-fast);
}

.link-group a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: var(--space-sm);
}

.social-links {
  display: flex;
  flex-direction: column;
}

/* Special Pages */
.success-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--light-color);
}

.success-content {
  max-width: 600px;
  padding: var(--space-xl);
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--neumorph-light);
}

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

.privacy-content, .terms-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl);
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--neumorph-light);
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content h2 {
    font-size: 1.75rem;
  }
  
  .methodology-content, .scenes-expanded {
    flex-direction: column;
  }
  
  .timeline-item {
    width: 100%;
    padding-right: 0;
    padding-left: 80px;
  }
  
  .timeline-item:nth-child(even) {
    padding-left: 80px;
  }
  
  .process-timeline::before {
    left: 40px;
  }
  
  .timeline-marker {
    left: 32px;
    right: auto;
  }
  
  .timeline-item:nth-child(even) .timeline-marker {
    left: 32px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    margin-right: 0;
    margin-bottom: var(--space-md);
    width: 100%;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content h2 {
    font-size: 1.25rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  .neumorph-card {
    padding: var(--space-md);
    margin: var(--space-sm);
  }
}

/* Animations */
@keyframes morphing {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

.morph-animation {
  animation: morphing 15s infinite;
}

/* Card Image Styling */
.card-image, .press-image, .testimonial-image, .timeline-icon, .insight-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.card-image img, .press-image img, .testimonial-image img, .timeline-icon img, .insight-icon img {
  margin: 0 auto;
  object-fit: cover;
}