/* Global Variables */
:root {
  /* Primary Color Palette - Monochromatic */
  --primary-color: #2b2b2b;
  --primary-light: #4a4a4a;
  --primary-dark: #1a1a1a;
  --primary-lighter: #777777;
  --primary-darker: #111111;
  
  /* Accent Colors */
  --accent-color: #888888;
  --accent-light: #aaaaaa;
  --accent-dark: #666666;
  
  /* Text Colors */
  --text-dark: #333333;
  --text-light: #f5f5f5;
  --text-gray: #777777;
  
  /* Background Colors */
  --bg-light: #f8f8f8;
  --bg-white: #ffffff;
  --bg-gray: #eeeeee;
  --bg-dark-gray: #555555;
  
  /* Neumorphism Shadows */
  --shadow-light: rgba(255, 255, 255, 0.8);
  --shadow-dark: rgba(0, 0, 0, 0.1);
  --shadow-inset-light: rgba(255, 255, 255, 0.5);
  --shadow-inset-dark: rgba(0, 0, 0, 0.05);
  
  /* Border Radius */
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Spacing */
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 20px;
  --spacing-lg: 30px;
  --spacing-xl: 50px;
  
  /* Font Sizes */
  --font-size-xs: 0.8rem;
  --font-size-sm: 0.9rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.2rem;
  --font-size-xl: 1.5rem;
  --font-size-xxl: 2rem;
  --font-size-huge: 3rem;
}

/* Base Styles */
html, body {
  font-family: 'Rubik', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-light);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
  color: var(--primary-dark);
}

p {
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

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

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

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

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

/* Section Styles */
.section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

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

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

/* Neumorphic Elements */
.neumorph-container {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-md);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
  padding: var(--spacing-lg);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.neumorph-container:hover {
  transform: translateY(-5px);
  box-shadow: 
    10px 10px 20px var(--shadow-dark),
    -10px -10px 20px var(--shadow-light);
}

.neumorph-inset {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-md);
  box-shadow: 
    inset 6px 6px 12px var(--shadow-inset-dark),
    inset -6px -6px 12px var(--shadow-inset-light);
  padding: var(--spacing-lg);
}

.neumorph-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--bg-light);
  color: var(--primary-color);
  border: none;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
  transition: all var(--transition-medium);
  cursor: pointer;
  outline: none;
}

.neumorph-button:hover, .neumorph-button:focus {
  transform: translateY(-2px);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
  color: var(--primary-light);
}

.neumorph-button:active {
  transform: translateY(0);
  box-shadow: 
    inset 4px 4px 8px var(--shadow-inset-dark),
    inset -4px -4px 8px var(--shadow-inset-light);
}

/* Button Styles */
.button {
  position: relative;
  overflow: hidden;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  transition: all var(--transition-medium);
  z-index: 1;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform var(--transition-medium);
  z-index: -1;
}

.button:hover::before {
  transform: translateX(0);
}

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

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

.button.is-outlined {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.button.is-outlined:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.button.is-large {
  font-size: var(--font-size-lg);
  padding: 15px 40px;
}

/* Read More Links */
.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
  padding-right: 25px;
  transition: color var(--transition-medium);
}

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

.read-more:hover {
  color: var(--primary-light);
}

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

/* Header/Navbar Styles */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: var(--bg-white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-medium);
}

.header.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.navbar {
  background-color: transparent;
}

.navbar-item {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  color: var(--primary-color);
  transition: color var(--transition-fast);
}

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

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

.navbar-burger:hover {
  background-color: transparent;
}

/* Hero Section */
.hero {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  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.4));
  z-index: 1;
}

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

.hero .title, 
.hero .subtitle,
.hero p {
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero .title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--spacing-md);
}

.hero .subtitle {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: var(--spacing-lg);
  font-weight: 500;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* Vision Section */
.vision-section {
  background-color: var(--bg-light);
}

.vision-section .image-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 
    8px 8px 20px var(--shadow-dark),
    -8px -8px 20px var(--shadow-light);
}

.vision-section img {
  transition: transform var(--transition-slow);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

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

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

.process-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  transition: transform var(--transition-medium);
}

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

.process-card .card-image {
  width: 100%;
  margin-bottom: var(--spacing-md);
}

.process-card .image-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
}

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

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

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

.process-card h3 {
  margin-bottom: var(--spacing-sm);
}

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

.behind-scenes-section .content {
  position: relative;
  z-index: 2;
}

.behind-scenes-section .image-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 
    8px 8px 20px var(--shadow-dark),
    -8px -8px 20px var(--shadow-light);
}

.behind-scenes-section img {
  transition: transform var(--transition-slow);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.behind-scenes-section .image-container:hover img {
  transform: scale(1.05);
}

/* Gallery Section */
.gallery-section {
  background-color: var(--bg-gray);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  margin-bottom: var(--spacing-lg);
  height: 250px;
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--text-light);
  padding: var(--spacing-md);
  transform: translateY(100%);
  transition: transform var(--transition-medium);
}

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

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

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

.gallery-overlay p {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: var(--font-size-sm);
}

/* Community Section */
.community-section {
  background-color: var(--bg-light);
}

.community-section .image-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 
    8px 8px 20px var(--shadow-dark),
    -8px -8px 20px var(--shadow-light);
}

.community-section img {
  transition: transform var(--transition-slow);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.community-section .image-container:hover img {
  transform: scale(1.05);
}

/* Research Section */
.research-section {
  background-color: var(--bg-gray);
}

.external-resources {
  margin-top: var(--spacing-xl);
}

.resource-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.resource-item {
  height: 100%;
  padding: var(--spacing-md);
  border-radius: var(--border-radius-md);
  background-color: var(--bg-light);
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.resource-item:hover {
  transform: translateY(-5px);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
}

.research-section .image-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 
    8px 8px 20px var(--shadow-dark),
    -8px -8px 20px var(--shadow-light);
}

.research-section img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.research-section .image-container:hover img {
  transform: scale(1.05);
}

/* Accolades Section */
.accolades-section {
  background-color: var(--bg-light);
}

.accolade-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  transition: transform var(--transition-medium);
}

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

.accolade-card .card-image {
  width: 100%;
  margin-bottom: var(--spacing-md);
}

.accolade-card .image-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
}

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

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

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

.accolade-card h3 {
  margin-bottom: var(--spacing-sm);
}

/* FAQ Section */
.faq-section {
  background-color: var(--bg-gray);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-question {
  padding: var(--spacing-md);
  background-color: var(--bg-light);
  border-radius: var(--border-radius-md);
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
  cursor: pointer;
  position: relative;
  transition: all var(--transition-medium);
}

.faq-question::after {
  /*content: '+';*/
  /*position: absolute;*/
  /*right: var(--spacing-md);*/
  /*top: 50%;*/
  /*transform: translateY(-50%);*/
  /*font-size: var(--font-size-xl);*/
  /*transition: transform var(--transition-fast);*/
}

.faq-item.is-active .faq-question {
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
  box-shadow: none;
}

.faq-item.is-active .faq-question::after {
  content: '−';
}

.faq-answer {
  background-color: var(--bg-light);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-medium);
  border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
}

.faq-item.is-active .faq-answer {
  padding: var(--spacing-md);
  max-height: 500px;
}

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

.contact-info {
  margin-bottom: var(--spacing-lg);
}

.contact-detail {
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: flex-start;
}

.contact-detail strong {
  margin-right: var(--spacing-sm);
  min-width: 100px;
}

.map-container {
  height: 350px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
}

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

.contact-form {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-xl);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
}

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

.contact-form .label {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.contact-form .input,
.contact-form .textarea {
  background-color: var(--bg-light);
  border: none;
  border-radius: var(--border-radius-sm);
  box-shadow: 
    inset 4px 4px 8px var(--shadow-inset-dark),
    inset -4px -4px 8px var(--shadow-inset-light);
  padding: 12px 15px;
  transition: all var(--transition-fast);
}

.contact-form .input:focus,
.contact-form .textarea:focus {
  box-shadow: 
    inset 6px 6px 10px var(--shadow-inset-dark),
    inset -6px -6px 10px var(--shadow-inset-light);
  outline: none;
}

.contact-form .button {
  margin-top: var(--spacing-md);
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: var(--spacing-xl) 0;
}

.footer .title {
  color: var(--text-light);
}

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

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

.footer-links a {
  color: var(--text-light);
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--text-light);
}

.copyright {
  margin-top: var(--spacing-lg);
  text-align: center;
  color: var(--text-light);
  opacity: 0.6;
}

/* About Page Styles */
.about-hero .title,
.about-hero .subtitle {
  color: var(--text-light);
}

.history-section,
.sustainability-section {
  background-color: var(--bg-light);
}

.mission-section,
.team-section,
.facilities-section {
  background-color: var(--bg-gray);
}

.timeline {
  position: relative;
  padding: var(--spacing-lg) 0;
}

.timeline-item {
  padding-left: 40px;
  position: relative;
  margin-bottom: var(--spacing-lg);
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--primary-color);
  z-index: 2;
}

.timeline-marker::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 15px;
  width: 2px;
  height: 100%;
  background-color: var(--primary-color);
  z-index: 1;
}

.timeline-item:last-child .timeline-marker::before {
  display: none;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  text-align: center;
}

.team-card .card-image {
  width: 100%;
  margin-bottom: var(--spacing-md);
}

.team-card .image-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: var(--border-radius-md);
}

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

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

.facilities-gallery img {
  border-radius: var(--border-radius-sm);
  margin-bottom: var(--spacing-sm);
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.value-item,
.sustainability-item {
  margin-bottom: var(--spacing-md);
}

/* Contact Page Styles */
.contact-details-section {
  background-color: var(--bg-light);
}

.contact-form-section {
  background-color: var(--bg-gray);
}

.sales-team-section {
  background-color: var(--bg-light);
}

.offices-info {
  margin-top: var(--spacing-lg);
}

/* Privacy and Terms Pages */
.privacy-policy-section,
.terms-section {
  padding-top: 120px;
  background-color: var(--bg-light);
}

/* Success Page */
.success-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-light);
}

.success-message {
  text-align: center;
  padding: var(--spacing-xl);
}

.success-icon {
  display: block;
  margin: 0 auto var(--spacing-lg);
  animation: scale-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scale-in {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.additional-info-section {
  background-color: var(--bg-gray);
}

.info-box {
  height: 100%;
  padding: var(--spacing-md);
  background-color: var(--bg-light);
  border-radius: var(--border-radius-md);
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
  transition: transform var(--transition-medium);
}

.info-box:hover {
  transform: translateY(-5px);
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: var(--text-light);
  padding: var(--spacing-md) 0;
  z-index: 9999;
  display: none;
}

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

.cookie-content p {
  margin: 0;
  color: var(--text-light);
}

/* Responsive Styles */
@media screen and (max-width: 1023px) {
  .navbar-menu {
    background-color: var(--bg-white);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-item {
    text-align: center;
  }
  
  .hero .title {
    font-size: clamp(2rem, 4vw, 3rem);
  }
  
  .hero .subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  }
}

@media screen and (max-width: 768px) {
  :root {
    --spacing-xl: 40px;
    --spacing-lg: 25px;
  }
  
  .section {
    padding: var(--spacing-lg) 0;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content p {
    margin-bottom: var(--spacing-md);
  }
  
  .gallery-item,
  .process-card .image-container,
  .accolade-card .image-container {
    height: 200px;
  }
  
  .team-card .image-container {
    height: 300px;
  }
  
  .map-container {
    height: 250px;
  }
  
  .research-section img {
    height: 400px;
  }
}

/* Animation Utilities */
.fade-in {
  animation: fadeIn var(--transition-slow);
}

.slide-up {
  animation: slideUp var(--transition-slow);
}

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

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

/* Custom Input Styles for Neumorphism */
.neumorph-input {
  width: 100%;
  padding: 12px 15px;
  background-color: var(--bg-light);
  border: none;
  border-radius: var(--border-radius-sm);
  box-shadow: 
    inset 4px 4px 8px var(--shadow-inset-dark),
    inset -4px -4px 8px var(--shadow-inset-light);
  transition: all var(--transition-fast);
}

.neumorph-input:focus {
  box-shadow: 
    inset 6px 6px 10px var(--shadow-inset-dark),
    inset -6px -6px 10px var(--shadow-inset-light);
  outline: none;
}

.neumorph-textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: var(--bg-light);
  border: none;
  border-radius: var(--border-radius-sm);
  box-shadow: 
    inset 4px 4px 8px var(--shadow-inset-dark),
    inset -4px -4px 8px var(--shadow-inset-light);
  transition: all var(--transition-fast);
  min-height: 150px;
  resize: vertical;
}

.neumorph-textarea:focus {
  box-shadow: 
    inset 6px 6px 10px var(--shadow-inset-dark),
    inset -6px -6px 10px var(--shadow-inset-light);
  outline: none;
}
.navbar-burger{
  display: none;
}