/* Design System - Variables */
:root {
  /* Colors - Sandy tones with jade accents */
  --color-bg: #faf8f5;
  --color-surface: #ffffff;
  --color-primary: #2d8b6f;
  --color-accent: #e8c89e;
  --color-text-main: #2c2c2c;
  --color-text-muted: #6b6b6b;
  --color-border: #e5e0da;
  --color-success: #2d8b6f;
  --color-error: #c65d4f;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #2d8b6f 0%, #3aa380 100%);
  --gradient-accent: linear-gradient(135deg, #e8c89e 0%, #dfb886 100%);
  --gradient-hero: linear-gradient(135deg, #f5efe6 0%, #e8dcc8 100%);

  /* Fonts */
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Open Sans", sans-serif;

  /* Spacing */
  --section-padding: 80px 0;
  --section-padding-mobile: 50px 0;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-main);
  margin-bottom: 1rem;
}

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

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: #236b57;
}

/* Header */
.header {
  background-color: var(--color-surface);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1.2rem 0;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

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

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

/* Mobile Menu */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background-color: var(--color-surface);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
}

/* Hero Section */
.hero-section {
  background: var(--gradient-hero);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 200, 158, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-text-main);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.hero-bullets ul {
  list-style: none;
  margin-bottom: 2rem;
}

.hero-bullets li {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.hero-bullets li i {
  color: var(--color-primary);
  margin-right: 0.8rem;
  font-size: 1.3rem;
}

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

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper img {
  border-radius: 12px;
}

/* Buttons */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(45, 139, 111, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #236b57 0%, #2e9171 100%);
  box-shadow: 0 6px 20px rgba(45, 139, 111, 0.4);
  transform: translateY(-2px);
}

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

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

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Sections */
section {
  padding: var(--section-padding);
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.2rem;
  color: var(--color-text-main);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto;
}

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

.problem-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--color-error);
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.problem-icon {
  width: 60px;
  height: 60px;
  background: rgba(198, 93, 79, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.problem-icon i {
  font-size: 1.8rem;
  color: var(--color-error);
}

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

/* Audience Section */
.section-audience {
  background-color: var(--color-bg);
}

.audience-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid var(--color-primary);
}

.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.audience-icon {
  width: 60px;
  height: 60px;
  background: rgba(45, 139, 111, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.audience-icon i {
  font-size: 1.8rem;
  color: var(--color-primary);
}

.audience-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* Approach Section */
.section-approach {
  background-color: var(--color-surface);
  padding: 80px 0;
}

.approach-content {
  padding-left: 2rem;
}

.approach-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.approach-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

.approach-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.approach-highlight {
  background: var(--gradient-accent);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 2rem;
}

.approach-highlight i {
  font-size: 2rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

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

.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

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

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-card ul {
  margin-bottom: 1.5rem;
  padding-left: 1.2rem;
}

.service-card li {
  margin-bottom: 0.5rem;
}

.service-outcome {
  background: rgba(45, 139, 111, 0.05);
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid var(--color-primary);
  font-weight: 500;
}

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

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 35px;
  top: 70px;
  width: 2px;
  height: calc(100% + 30px);
  background: var(--gradient-primary);
}

.process-number {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(45, 139, 111, 0.3);
}

.process-content {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  flex: 1;
}

.process-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

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

.result-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.result-icon {
  width: 60px;
  height: 60px;
  background: rgba(45, 139, 111, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.result-icon i {
  font-size: 1.8rem;
  color: var(--color-success);
}

.result-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.results-cta {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  margin-top: 3rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Contact Form Section */
.section-contacts {
  background: var(--gradient-hero);
  padding: 80px 0;
}

.contact-form-wrapper {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-label {
  font-weight: 600;
  color: var(--color-text-main);
  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 0.2rem rgba(45, 139, 111, 0.1);
}

.form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

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

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

.accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-text-main);
  background-color: var(--color-bg);
  padding: 1.25rem 1.5rem;
}

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

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

.accordion-body {
  padding: 1.5rem;
  background-color: white;
}

/* Final CTA */
.section-final-cta {
  background: var(--gradient-primary);
  color: white;
  padding: 80px 0;
}

.section-final-cta h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.section-final-cta .lead {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

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

.section-final-cta .btn-primary:hover {
  background: var(--color-accent);
  color: var(--color-text-main);
}

/* Footer */
.footer {
  background-color: #2c2c2c;
  color: white;
  padding: 50px 0 20px;
}

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

.footer p {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer ul li {
  margin-bottom: 0.8rem;
}

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

.footer ul li a:hover {
  color: white;
}

.footer ul li i {
  margin-right: 0.5rem;
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 1.5rem 0;
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

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

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

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

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal-content h3 {
  margin-bottom: 1.5rem;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--color-bg);
  border-radius: 8px;
}

.cookie-category input[type="checkbox"] {
  margin-right: 0.5rem;
}

.cookie-category p {
  margin: 0.5rem 0 0 1.7rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.cookie-modal-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Contact Page */
.page-header {
  background: var(--gradient-hero);
  padding: 80px 0 40px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-contact-page {
  padding: 80px 0;
}

.contact-info-box {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.contact-info-box h3 {
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--color-primary);
  width: 30px;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  margin-bottom: 0.3rem;
}

.contact-info-item p {
  margin: 0;
}

.response-time-notice {
  background: rgba(45, 139, 111, 0.1);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: 8px;
  display: flex;
  gap: 1rem;
}

.response-time-notice i {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.map-placeholder {
  background: var(--color-bg);
  border-radius: 12px;
  height: 300px;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.map-overlay i {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* Legal Pages */
.legal-page {
  padding: 80px 0;
}

.legal-page h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.legal-page h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.legal-page h3 {
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.legal-page ul,
.legal-page ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-page li {
  margin-bottom: 0.5rem;
}

.legal-page a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Thank You Page */
.thank-you-page {
  padding: 80px 0;
  text-align: center;
}

.thank-you-icon {
  margin-bottom: 2rem;
}

.thank-you-icon i {
  font-size: 5rem;
  color: var(--color-success);
}

.thank-you-page h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.thank-you-details {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  margin: 3rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.next-steps {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.next-step-item {
  flex: 1;
  min-width: 150px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.thank-you-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.thank-you-contact {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--color-bg);
  border-radius: 12px;
}

/* Animation */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-section {
    padding: 60px 0;
  }

  section {
    padding: var(--section-padding-mobile);
  }

  .approach-content {
    padding-left: 0;
    margin-top: 2rem;
  }

  .cookie-content {
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

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

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

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

  .process-step {
    flex-direction: column;
    gap: 1rem;
  }

  .process-step:not(:last-child)::after {
    left: 35px;
    top: 85px;
  }
}
