/* Custom Olive Green Theme for Bulma */
:root {
  --olive-primary: #556b2f;
  --olive-primary-light: #6b8e23;
  --olive-primary-dark: #3a4d1f;
  --olive-light: #f0f4e6;
  --olive-grey: #5a5a5a;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar Styles */
.navbar {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Bulma Overrides */
.button.is-primary {
  background-color: var(--olive-primary);
}

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

.has-text-primary {
  color: var(--olive-primary) !important;
}

.has-background-primary {
  background-color: var(--olive-primary) !important;
}

.has-background-light {
  background-color: var(--olive-light) !important;
}

/* Hero Section */
.hero {
  padding-top: 4rem;
}

/* Features Section */
.card {
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Use Cases Tabs */
.tabs.is-boxed li.is-active a {
  background-color: var(--olive-primary);
  border-color: var(--olive-primary);
  color: white;
}

.tab-content .tab-pane {
  display: none;
  padding: 2rem 0;
}

.tab-content .tab-pane.is-active {
  display: block;
}

/* Testimonials */
.client-logo {
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Testimonial card fixes */
.media-content .title {
  display: block;
  margin-bottom: 0;
  line-height: 1.2;
}

.media-content .subtitle {
  display: block;
  margin-top: 5px;
  line-height: 1.4;
}

/* Feature card fixes */
.card .media .media-content {
  min-height: 40px;
}

.card .media .media-left {
  margin-right: 1rem;
}

/* FAQ Accordion */
.faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 1rem;
}

.faq-question {
  padding: 1rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 0 1rem 0;
  display: none;
}

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

.faq-item.is-active .faq-question .icon i {
  transform: rotate(180deg);
}

.faq-question .icon i {
  transition: transform 0.3s ease;
}

/* Contact Form */
.textarea {
  min-height: 120px;
}

/* Contact section fixes */
.max-w-2xl {
  max-width: 42rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  padding: 3rem 1.5rem;
  border-top: 1px solid #e0e0e0;
}

@media screen and (max-width: 768px) {
  .footer .is-justify-content-end {
    justify-content: flex-start !important;
  }
}

