/* Custom Properties - Beige-Green Theme with Calm Gradients */
:root {
  --color-primary: #6b8e6f;
  --color-primary-dark: #4a6b4d;
  --color-primary-light: #a8c5ab;
  --color-secondary: #d4c5a9;
  --color-accent: #8faf92;

  --color-bg: #f9f7f4;
  --color-bg-alt: #ffffff;
  --color-text: #2c3e2f;
  --color-text-muted: #6b7b6e;
  --color-border: #e8e3db;

  --color-success: #6b8e6f;
  --color-warning: #d4a574;
  --color-danger: #b86b6b;

  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);

  --gradient-primary: linear-gradient(135deg, #6b8e6f 0%, #8faf92 100%);
  --gradient-secondary: linear-gradient(135deg, #d4c5a9 0%, #e8dcc8 100%);
  --gradient-hero: linear-gradient(135deg, #f9f7f4 0%, #ebe6dd 100%);
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  padding-top: 76px;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 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: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

/* Navigation */
.navbar {
  background: var(--color-bg-alt) !important;
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
}

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

.nav-link {
  color: var(--color-text) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

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

.nav-link.btn-cta {
  background: var(--gradient-primary);
  color: white !important;
  padding: 8px 20px;
  border-radius: 6px;
}

.nav-link.btn-cta:hover {
  opacity: 0.9;
}

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

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-text {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta {
  margin-top: 2rem;
}

.hero-section img {
  border: 4px solid white;
}

/* Section Styles */
section {
  background: var(--color-bg-alt);
}

section:nth-child(even) {
  background: var(--color-bg);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

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

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

.audience-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.audience-card .icon-box {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.audience-card .icon-box i {
  font-size: 2rem;
  color: white;
}

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

.audience-card p {
  color: var(--color-text-muted);
  margin: 0;
}

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

.problem-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.problem-item i {
  font-size: 1.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.problem-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.problem-item p {
  color: var(--color-text-muted);
  margin: 0;
}

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

.service-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.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.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

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

.service-list li {
  padding: 0.5rem 0;
  color: var(--color-text-muted);
  position: relative;
  padding-left: 1.5rem;
}

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

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

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

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--gradient-primary);
  top: 0;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

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

.timeline-content {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  width: calc(50% - 50px);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  margin-right: 0;
}

.timeline-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.timeline-content p {
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.timeline-duration {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--gradient-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

.result-card {
  text-align: center;
  padding: 2rem;
}

.result-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

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

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

.result-card p {
  color: var(--color-text-muted);
  margin: 0;
}

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

.accordion-item {
  border: none;
  background: white;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-button {
  background: white;
  color: var(--color-text);
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  font-size: 1.0625rem;
}

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

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

.accordion-body {
  padding: 1.5rem;
  color: var(--color-text-muted);
  background: white;
}

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

.contact-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

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

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

.form-control:focus,
.form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(107, 142, 111, 0.15);
}

/* Final CTA Section */
.final-cta-section {
  background: var(--gradient-primary) !important;
  color: white;
}

.final-cta-section h2 {
  color: white;
}

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

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

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

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

.footer-title {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-heading {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
  color: white;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
  color: white;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0 1.5rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.875rem;
}

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

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  color: rgba(255, 255, 255, 0.9);
}

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

.cookie-option {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.cookie-option:last-child {
  border-bottom: none;
}

/* Page Header */
.page-header {
  background: var(--gradient-hero);
  padding: 120px 0 60px;
  text-align: center;
}

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

.page-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
}

/* Contact Page */
.contact-page-section {
  background: var(--color-bg);
}

.contact-info-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  font-size: 1.5rem;
  color: white;
}

.contact-info-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  color: var(--color-text-muted);
  margin: 0;
}

/* Service Pages */
.service-overview,
.service-details,
.service-benefits,
.service-process,
.service-cta {
  padding: 4rem 0;
}

.detail-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform 0.3s ease;
}

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

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

.detail-icon i {
  font-size: 1.5rem;
  color: white;
}

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

.detail-card p {
  color: var(--color-text-muted);
  margin: 0;
}

.service-highlight {
  background: var(--gradient-secondary);
  padding: 2.5rem;
  border-radius: 12px;
}

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

.checklist li {
  padding: 0.5rem 0;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checklist i {
  color: var(--color-primary);
  font-size: 1.125rem;
}

.benefit-card {
  text-align: center;
  padding: 2rem;
}

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

.benefit-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--color-text-muted);
  margin: 0;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.step-number {
  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;
  margin: 0 auto 1rem;
}

.process-step h4 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.process-step p {
  color: var(--color-text-muted);
  margin: 0;
}

.service-cta {
  background: var(--color-bg);
}

/* Legal Pages */
.legal-content {
  background: var(--color-bg);
}

.legal-text {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.legal-text h2 {
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.legal-text h2:first-child {
  margin-top: 0;
}

.legal-text h3 {
  font-size: 1.375rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-text p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

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

.legal-text li {
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* Thank You Page */
.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
}

.thank-you-card {
  background: white;
  padding: 4rem 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.success-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.success-icon i {
  font-size: 3rem;
  color: white;
}

.thank-you-card h1 {
  font-size: 2rem;
  color: var(--color-primary);
}

.thank-you-actions {
  margin: 2rem 0;
}

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

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

  .timeline::before {
    left: 30px;
  }

  .timeline-marker {
    left: 30px;
  }

  .timeline-item {
    flex-direction: row !important;
  }

  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 1.875rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .legal-text {
    padding: 2rem;
  }

  .thank-you-card {
    padding: 2.5rem 1.5rem;
  }

  .thank-you-card h1 {
    font-size: 1.5rem;
  }

  .thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .thank-you-actions .btn {
    width: 100%;
    margin: 0 !important;
  }
}

/* Animation for Timeline */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-item {
  animation: fadeInUp 0.6s ease-out;
}
