:root {
  /* Primary Colors */
  --primary-color: #3cb371;
  --primary-light: #6edc9f;
  --primary-dark: #2a8c57;
  
  /* Secondary Colors */
  --secondary-color: #1e88e5;
  --secondary-light: #6ab7ff;
  --secondary-dark: #005cb2;
  
  /* Accent Colors */
  --accent-color: #ff9800;
  --accent-light: #ffc947;
  --accent-dark: #c66900;
  
  /* Neutral Colors */
  --dark-color: #2c3e50;
  --dark-light: #34495e;
  --light-color: #f5f9f2;
  --white-color: #ffffff;
  --gray-color: #95a5a6;
  --gray-light: #ecf0f1;
  
  /* Semantic Colors */
  --success-color: #4caf50;
  --info-color: #2196f3;
  --warning-color: #ff9800;
  --danger-color: #f44336;
  
  /* Typography */
  --heading-font: 'Archivo Black', sans-serif;
  --body-font: 'Roboto', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Base Styles */
html, body {
  font-family: var(--body-font);
  color: var(--dark-color);
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: var(--white-color);
  line-height: 1.6;
}

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

p {
  margin-bottom: var(--spacing-sm);
}

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

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

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

.title, .subtitle {
  font-family: var(--heading-font);
  font-weight: 700;
}

/* Buttons */
.button {
  transition: all var(--transition-fast);
  font-weight: 500;
  border: none;
}

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

.button:active {
  transform: translateY(1px);
}

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

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

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

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

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

.button.is-accent:hover {
  background-color: var(--accent-dark);
}

.animate-button {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.animate-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%);
  transition: transform var(--transition-fast);
  z-index: -1;
}

.animate-button:hover::after {
  transform: translateX(0);
}

/* Navbar */
.navbar {
  transition: all var(--transition-fast);
  padding: var(--spacing-sm) 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar-brand .title {
  margin-bottom: 0;
}

.navbar-item {
  font-weight: 500;
  transition: color var(--transition-fast);
}

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

.navbar.scrolled {
  background-color: var(--white-color);
  box-shadow: var(--shadow-sm);
  padding: 0.5rem 0;
}

.navbar.scrolled .navbar-item {
  color: var(--dark-color);
}

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

#hero .title,
#hero .subtitle,
#hero p {
  color: var(--white-color) !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.scroll-down {
  display: inline-block;
  animation: bounce 2s infinite;
}

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

/* Vision Section */
#vision {
  padding: var(--spacing-xl) 0;
}

#vision .image-container {
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

#vision img {
  transition: transform var(--transition-medium);
  width: 100%;
  height: auto;
}

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

/* Sustainability Section */
#sustainability {
  padding: var(--spacing-xl) 0;
}

.card {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.card-content {
  padding: var(--spacing-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.equal-height {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Portfolio Section */
#portfolio {
  padding: var(--spacing-xl) 0;
}

.portfolio-card {
  margin-bottom: var(--spacing-md);
}

/* Resources Section */
#resources {
  padding: var(--spacing-xl) 0;
}

.resource-card {
  background-color: var(--white-color);
  height: 100%;
}

/* Events Calendar Section */
#events {
  padding: var(--spacing-xl) 0;
}

.event-card {
  margin-bottom: var(--spacing-md);
}

.event-card .card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* Testimonials Section */
#testimonials {
  padding: var(--spacing-xl) 0;
}

.testimonial-card {
  height: 100%;
  background-color: var(--white-color);
}

.testimonial-card .media {
  align-items: center;
}

.testimonial-card .image.is-64x64 {
  margin-right: var(--spacing-sm);
}

/* Pricing Section */
#pricing {
  padding: var(--spacing-xl) 0;
}

.pricing-card {
  text-align: center;
  border: 1px solid var(--gray-light);
}

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

.pricing-card .price {
  font-size: 2.5rem;
  margin: var(--spacing-md) 0;
  font-weight: 700;
  color: var(--primary-color);
}

.pricing-card .price .currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.pricing-card .price .period {
  font-size: 1rem;
  color: var(--gray-color);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--spacing-md);
}

.pricing-card ul li {
  padding: var(--spacing-xs) 0;
  border-bottom: 1px solid var(--gray-light);
}

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

/* Customer Stories Section */
#customer-stories {
  padding: var(--spacing-xl) 0;
}

.story-card {
  margin-bottom: var(--spacing-md);
}

/* FAQ Section */
#faq {
  padding: var(--spacing-xl) 0;
}

.faq-item {
  margin-bottom: var(--spacing-md);
  background-color: var(--white-color);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-fast);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  margin-bottom: var(--spacing-sm);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  display: none;
  padding-top: var(--spacing-sm);
}

.faq-item.active .faq-answer {
  display: block;
}

/* Contact Section */
#contact {
  padding: var(--spacing-xl) 0;
}

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

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

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

/* Footer Section */
.footer {
  padding: var(--spacing-xl) 0;
}

.footer h3, .footer h4 {
  margin-bottom: var(--spacing-md);
}

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

.footer ul li {
  margin-bottom: var(--spacing-xs);
}

.footer .social-links a {
  display: inline-block;
  margin-right: var(--spacing-sm);
  color: var(--white-color);
  transition: color var(--transition-fast);
  line-height: 2;
}

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

/* Success Page */
.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  /* min-height: 100vh; */
  text-align: center;
  padding: var(--spacing-md);
}

.success-content {
  max-width: 600px;
  padding: var(--spacing-lg);
  /* border-radius: var(--border-radius-md); */
  /* background-color: var(--white-color); */
  /* box-shadow: var(--shadow-md); */
}

.success-content .icon {
  font-size: 3rem;
  color: var(--success-color);
  margin-bottom: var(--spacing-md);
}

/* Privacy and Terms Pages */
.terms-page, .privacy-page {
  padding-top: 100px;
  padding-bottom: var(--spacing-xl);
}

.terms-content, .privacy-content {
  background-color: var(--white-color);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .navbar-menu {
    background-color: var(--white-color);
  }
  
  .pricing-card.featured {
    transform: none;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
  }
  
  #hero .title {
    font-size: 2rem !important;
  }
  
  #hero .subtitle {
    font-size: 1.5rem !important;
  }
}

@media screen and (max-width: 1023px) {
  .column {
    margin-bottom: var(--spacing-md);
  }
}

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

.fade-in {
  animation: fadeIn var(--transition-medium);
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-left {
  animation: slideInLeft var(--transition-medium);
}

@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-right {
  animation: slideInRight var(--transition-medium);
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.zoom-in {
  animation: zoomIn var(--transition-medium);
}

/* Utility Classes */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mt-6 { margin-top: 4.5rem !important; }

.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-accent { color: var(--accent-color) !important; }
.text-white { color: var(--white-color) !important; }
.text-dark { color: var(--dark-color) !important; }