/* Base Styles and Variables */
:root {
  /* Primary Colors - Split-complementary color scheme */
  --primary-color: #3498db;
  --primary-dark: #2980b9;
  --primary-light: #5dade2;
  
  /* Complementary Colors */
  --secondary-color: #e74c3c;
  --secondary-dark: #c0392b;
  --secondary-light: #ec7063;
  
  /* Split Complementary Colors */
  --accent-color: #f39c12;
  --accent-dark: #d35400;
  --accent-light: #f5b041;
  
  /* Neutral Colors */
  --dark: #2c3e50;
  --medium: #7f8c8d;
  --light: #ecf0f1;
  --white: #ffffff;
  
  /* Glassmorphism Variables */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: rgba(0, 0, 0, 0.1);
  --glass-blur: 10px;
  
  /* Typography */
  --title-font: 'Roboto', sans-serif;
  --body-font: 'Lato', sans-serif;
  
  /* Sizes */
  --container-width: 1200px;
  --header-height: 80px;
  --section-spacing: 100px;
  --card-spacing: 20px;
  
  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
  --gradient-light: linear-gradient(135deg, var(--light), #d6eaf8);
  
  /* Animations */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
  
  /* Border Radius */
  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-full: 50%;
  
  /* Overlay */
  --overlay-dark: rgba(0, 0, 0, 0.5);
}

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--title-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark);
}

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

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 2rem;
}

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

p {
  margin-bottom: 1.5rem;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

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

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

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--medium);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
}

/* Adaptive Typography */
.adaptive-typography {
  font-size: clamp(1.5rem, 3vw, 3.5rem);
  letter-spacing: -0.03em;
  font-weight: 900;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: var(--gradient-primary);
  color: transparent;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

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

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  flex: 1;
  padding: 0 15px;
  min-width: 300px;
}

.is-two-thirds {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.is-half {
  flex: 0 0 50%;
  max-width: 50%;
}

.is-one-third {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

@media (max-width: 768px) {
  .is-two-thirds, .is-half, .is-one-third {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Glassmorphism Effect */
.glassmorphism {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px var(--glass-shadow);
  border-radius: var(--radius-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.glassmorphism:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--glass-shadow);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: var(--radius-md);
  font-family: var(--title-font);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: var(--white);
}

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

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color));
  color: var(--white);
}

.btn-accent {
  background: var(--gradient-accent);
  color: var(--white);
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent-color));
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* Forms and Inputs */
input, textarea, select {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  font-family: var(--body-font);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.glassmorphism-input {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--dark);
}

.glassmorphism-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark);
}

/* Header and Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: all var(--transition-fast);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo img {
  height: auto;
  max-height: 60px;
}

.main-nav .nav-list {
  display: flex;
  list-style: none;
}

.main-nav .nav-list li {
  margin-left: 30px;
}

.main-nav .nav-list li a {
  color: var(--dark);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

.main-nav .nav-list li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width var(--transition-fast);
}

.main-nav .nav-list li a:hover {
  color: var(--primary-color);
}

.main-nav .nav-list li a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 30px;
  height: 3px;
  background-color: var(--dark);
  margin: 3px 0;
  border-radius: 3px;
  transition: all var(--transition-fast);
}

@media (max-width: 991px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav .nav-list {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
    transition: all var(--transition-medium);
    z-index: 999;
  }
  
  .main-nav .nav-list.active {
    left: 0;
  }
  
  .main-nav .nav-list li {
    margin: 15px 0;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  padding-top: 150px;
  padding-bottom: 100px;
  overflow: hidden;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
  z-index: 2;
  position: relative;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 2.5rem;
  color: var(--white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    margin-bottom: 15px;
  }
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  text-align: center;
  height: 100%;
}

.card-image {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  width: 100%;
}

.card-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
  margin: 0 auto;
  border-radius: var(--radius-md);
  transition: transform var(--transition-medium);
}

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

.card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-content h3 {
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.card-content p {
  margin-bottom: 20px;
  color: var(--medium);
}

.animated-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  transition: transform var(--transition-medium);
}

.feature-card:hover .animated-icon {
  transform: rotateY(360deg);
  transition: transform 1s ease;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
  margin: 15px 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition-fast);
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition-fast);
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary-color);
}

input:checked + .slider:before {
  transform: translateX(30px);
}

.toggle-text {
  position: absolute;
  left: 70px;
  top: 5px;
  white-space: nowrap;
  font-size: 0.9rem;
}

/* Stats Widget */
.stats-widget {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  width: 100%;
}

.stat-item {
  text-align: center;
}

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

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

/* Workshops Section */
.workshops-section {
  padding: var(--section-spacing) 0;
  position: relative;
  background-color: var(--primary-light);
  color: var(--white);
}

.workshops-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.9), rgba(41, 128, 185, 0.9));
  z-index: -1;
}

.workshops-section .section-title,
.workshops-section .section-description {
  color: var(--white);
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.workshop-card {
  background-color: var(--white);
  color: var(--dark);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

.workshop-card .card-content {
  padding: 25px;
  text-align: center;
}

.workshop-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.workshop-details span {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--medium);
}

.workshop-details i {
  margin-right: 10px;
  color: var(--primary-color);
}

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

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 30px;
}

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

.resource-card .card-image {
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-bottom: 15px;
}

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

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

.resource-card .card-content {
  padding: 15px;
}

.resource-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary-color);
  font-weight: 600;
  padding: 5px 15px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--primary-color);
  transition: all var(--transition-fast);
}

.resource-link:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

/* Customer Stories Section */
.customer-stories-section {
  padding: var(--section-spacing) 0;
  background-color: var(--light);
}

.stories-carousel {
  position: relative;
  padding: 40px;
  overflow: hidden;
  margin-bottom: 30px;
}

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

.story-card .card-image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 25px;
}

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

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

.story-card .quote {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
  position: relative;
  padding: 0 25px;
}

.story-card .quote::before,
.story-card .quote::after {
  content: '"';
  font-size: 3rem;
  color: var(--primary-light);
  position: absolute;
  opacity: 0.3;
}

.story-card .quote::before {
  top: -20px;
  left: 0;
}

.story-card .quote::after {
  bottom: -40px;
  right: 0;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.prev-btn, .next-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.prev-btn:hover, .next-btn:hover {
  transform: scale(1.1);
}

.prev-btn span, .next-btn span {
  line-height: 1;
}

/* Sustainability Section */
.sustainability-section {
  padding: var(--section-spacing) 0;
  position: relative;
  color: var(--white);
}

.sustainability-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(243, 156, 18, 0.9), rgba(211, 84, 0, 0.9));
  z-index: -1;
}

.sustainability-section .section-title,
.sustainability-section .section-description {
  color: var(--white);
}

.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.sustainability-card {
  background-color: var(--white);
  color: var(--dark);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

.sustainability-card .card-content {
  padding: 25px;
  text-align: center;
}

/* Awards Section */
.awards-section {
  padding: var(--section-spacing) 0;
  background-color: var(--light);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px;
}

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

.award-card .card-image {
  width: 100%;
  height: 160px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
}

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

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

.award-card .card-content {
  padding: 15px;
}

.award-year {
  display: inline-block;
  padding: 5px 15px;
  background-color: var(--primary-light);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-top: 15px;
}

/* Contact Section */
.contact-section {
  padding: var(--section-spacing) 0;
  position: relative;
  color: var(--dark);
}

.contact-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(236, 240, 241, 0.9), rgba(189, 195, 199, 0.9));
  z-index: -1;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px;
}

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

.contact-info ul {
  list-style: none;
  margin-bottom: 30px;
}

.contact-info ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.contact-info ul li i {
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.social-media h4 {
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  color: var(--dark);
  transition: color var(--transition-fast);
}

.social-links a i {
  margin-right: 10px;
  color: var(--primary-color);
}

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

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

.form-group {
  margin-bottom: 20px;
}

/* Footer Section */
.footer-section {
  padding: 80px 0 30px;
  background-color: var(--dark);
  color: var(--white);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--primary-light);
}

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

.social-links-text a {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  transition: color var(--transition-fast);
}

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

.newsletter-form {
  display: flex;
  flex-direction: column;
}

.newsletter-form input {
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 20px;
}

.copyright p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.5);
  margin-left: 20px;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

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

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links a {
    margin: 0 10px;
  }
}

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

/* 3D Effects and Animations */
.card, .feature-card, .workshop-card, .story-card, .award-card, .sustainability-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.card:hover, .feature-card:hover, .workshop-card:hover, .story-card:hover, .award-card:hover, .sustainability-card:hover {
  transform: translateY(-10px) rotateX(5deg);
}

.card-image img {
  transition: transform var(--transition-medium);
}

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

/* Cookie Consent Popup */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 15px;
  text-align: center;
  z-index: 9999;
}

.cookie-consent button {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  margin-top: 10px;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast);
}

.cookie-consent button:hover {
  background: var(--accent-dark);
}

/* Success Page */
.success-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  padding: 50px 20px;
  background: var(--light);
}

.success-page h1 {
  margin-bottom: 30px;
  color: var(--primary-color);
}

.success-page p {
  max-width: 600px;
  margin-bottom: 30px;
}

.success-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  animation: bounce 2s infinite;
}

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

/* Privacy and Terms Pages */
.content-page {
  padding-top: 150px;
  padding-bottom: 80px;
}

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

.content-page h1 {
  margin-bottom: 40px;
  color: var(--primary-color);
}

.content-page h2 {
  margin: 40px 0 20px;
  color: var(--dark);
}

.content-page p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.content-page ul, .content-page ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.content-page li {
  margin-bottom: 10px;
  line-height: 1.8;
}

/* Utility Classes */
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-3 { margin-bottom: 3rem; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-dark { color: var(--dark); }
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-accent { color: var(--accent-color); }

/* Responsive Adjustments */
@media (max-width: 1200px) {
  :root {
    --section-spacing: 80px;
  }
}

@media (max-width: 991px) {
  :root {
    --section-spacing: 70px;
  }
  
  .hero-section {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 60px;
  }
  
  .hero-section {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  
  .hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
  }
  
  .hero-content p {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
  }
  
  .section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
  }
  
  .contact-container {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  :root {
    --section-spacing: 50px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .hero-content h1 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}
.mobile-menu-toggle{
  display: none;
}