/* FILE: css/style.css */

:root {
  /* Beige-Green Light Theme Colors */
  --color-primary: #6b8e4e;
  --color-primary-dark: #557238;
  --color-primary-light: #8faf6a;
  --color-secondary: #c9b896;
  --color-accent: #a67b5b;

  --color-bg-main: #f9f7f3;
  --color-bg-alt: #ffffff;
  --color-bg-section: #f2efe6;

  --color-text-primary: #2c3e2a;
  --color-text-secondary: #5a6c57;
  --color-text-muted: #8a9488;

  --color-border: #d8d3c5;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #6b8e4e 0%, #8faf6a 100%);
  --gradient-secondary: linear-gradient(135deg, #c9b896 0%, #e5dcc9 100%);
  --gradient-hero: linear-gradient(135deg, #f9f7f3 0%, #f2efe6 100%);

  /* Spacing */
  --section-padding: 80px 0;
  --border-radius: 12px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(107, 142, 78, 0.08);
  --shadow-md: 0 4px 16px rgba(107, 142, 78, 0.12);
  --shadow-lg: 0 8px 32px rgba(107, 142, 78, 0.16);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg-main);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lora", serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

a {
  text-decoration: none;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

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

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  color: white;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white;
}

.btn-outline-primary {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

/* Header */
.header {
  background: var(--color-bg-alt);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-family: "Lora", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
}

.nav-link {
  color: var(--color-text-secondary);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

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

/* Hero Section */
.hero-section {
  padding: var(--section-padding);
  background: var(--gradient-hero);
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Problems Section */
.problems-section {
  padding: var(--section-padding);
  background: var(--color-bg-alt);
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.problem-card {
  background: var(--color-bg-section);
  padding: 2rem;
  border-radius: var(--border-radius);
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid var(--color-border);
}

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

.problem-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.problem-icon i {
  font-size: 1.8rem;
  color: white;
}

.problem-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.problem-card p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

/* Who Section */
.who-section {
  padding: var(--section-padding);
  background: var(--color-bg-section);
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: start;
  gap: 1rem;
}

.feature-list i {
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Approach Section */
.approach-section {
  padding: var(--section-padding);
  background: var(--color-bg-alt);
}

.approach-card {
  background: var(--gradient-hero);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  height: 100%;
  border-left: 4px solid var(--color-primary);
  transition: all 0.3s ease;
}

.approach-card:hover {
  box-shadow: var(--shadow-md);
}

.approach-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  padding: var(--section-padding);
  background: var(--color-bg-section);
}

.service-card {
  background: var(--color-bg-alt);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 2.5rem;
  color: white;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

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

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline:before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-primary);
}

.timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.timeline-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.timeline-marker {
  position: absolute;
  left: 0;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  box-shadow: var(--shadow-md);
}

.timeline-content {
  background: var(--color-bg-section);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.timeline-content h3 {
  margin-bottom: 0.75rem;
}

.timeline-duration {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: var(--color-primary-light);
  color: white;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Results Section */
.results-section {
  padding: var(--section-padding);
  background: var(--color-bg-section);
}

.result-card {
  background: var(--color-bg-alt);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.result-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-family: "Lora", serif;
}

/* Contact Form Section */
.contact-form-section {
  padding: var(--section-padding);
  background: var(--color-bg-alt);
}

.contact-form-wrapper {
  background: var(--color-bg-section);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.form-label {
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  border: 2px solid var(--color-border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(107, 142, 78, 0.1);
}

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

.accordion-item {
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  background: var(--color-bg-section);
  color: var(--color-text-primary);
  font-weight: 500;
  padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
  background: var(--gradient-primary);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--color-primary);
}

.accordion-body {
  padding: 1.5rem;
  background: var(--color-bg-alt);
}

/* CTA Section */
.cta-section {
  padding: var(--section-padding);
  background: var(--gradient-primary);
  color: white;
  text-align: center;
}

.cta-section h2 {
  color: white;
}

.cta-section .lead {
  color: rgba(255, 255, 255, 0.9);
}

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

.cta-section .btn-primary:hover {
  background: var(--color-bg-section);
}

/* Footer */
.footer {
  background: var(--color-text-primary);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

.footer h5 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

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

.footer ul li {
  padding: 0.4rem 0;
}

.footer i {
  margin-right: 0.5rem;
  color: var(--color-primary-light);
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
}

/* Service Pages */
.service-hero,
.page-hero {
  padding: 5rem 0 3rem;
  background: var(--gradient-hero);
}

.service-content,
.contact-page-section,
.legal-section {
  padding: var(--section-padding);
}

.service-sidebar {
  position: sticky;
  top: 100px;
}

.service-details {
  list-style: none;
  padding: 1.5rem;
  background: var(--color-bg-section);
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}

.service-details li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

.service-details li:last-child {
  border-bottom: none;
}

.service-details i {
  color: var(--color-primary);
  margin-right: 0.75rem;
  width: 20px;
}

.related-service {
  padding: 1.5rem;
  background: var(--color-bg-section);
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

.contact-box {
  padding: 1.5rem;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--border-radius);
}

.contact-box h5 {
  color: white;
}

.contact-box p {
  color: rgba(255, 255, 255, 0.9);
}

.cta-box {
  padding: 2rem;
  background: var(--gradient-secondary);
  border-radius: var(--border-radius);
  text-align: center;
}

.custom-list {
  list-style: none;
  padding: 0;
}

.custom-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.custom-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 1.5rem;
  line-height: 1;
}

.problem-list {
  margin: 2rem 0;
}

.problem-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.problem-item:last-child {
  border-bottom: none;
}

.problem-item i {
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.methodology-list,
.results-list {
  padding-left: 1.5rem;
}

.methodology-list li,
.results-list li {
  padding: 0.75rem 0;
}

/* Contact Page */
.contact-info-box {
  background: var(--color-bg-section);
  padding: 2rem;
  border-radius: var(--border-radius);
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-top: 4px;
}

/* Thank You Page */
.thank-you-section {
  padding: 8rem 0;
  text-align: center;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

/* Legal Pages */
.legal-section h2 {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.legal-section h3 {
  margin-top: 1.5rem;
}

.legal-section ul,
.legal-section ol {
  margin: 1rem 0;
}

.legal-section li {
  margin: 0.5rem 0;
}

/* Cookie Consent Banner */
#cookieConsent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-text-primary);
  color: white;
  padding: 1.5rem;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookieConsent.show {
  transform: translateY(0);
}

#cookieConsent p {
  margin-bottom: 1rem;
}

#cookieConsent .btn {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .timeline:before {
    left: 20px;
  }

  .timeline-marker {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .timeline-item {
    padding-left: 70px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }

  .hero-section {
    min-height: auto;
    padding: 4rem 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  :root {
    --section-padding: 60px 0;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

  .service-sidebar {
    position: static;
    margin-top: 3rem;
  }
}

@media (max-width: 576px) {
  .timeline:before {
    left: 10px;
  }

  .timeline-marker {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .timeline-item {
    padding-left: 50px;
  }
}
