/* FILE: css/style.css */

:root {
  --primary-color: #4ecca3;
  --primary-dark: #3ba87a;
  --primary-light: #6fd9b5;
  --secondary-color: #232931;
  --text-dark: #232931;
  --text-light: #4a5568;
  --text-muted: #718096;
  --background-light: #f7fafc;
  --background-white: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --gradient-primary: linear-gradient(135deg, #4ecca3 0%, #3ba87a 100%);
}

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

body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background-color: var(--background-white);
  line-height: 1.6;
}

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

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

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

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

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

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

/* Hero Section */
.hero {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f7fafc 0%, #e8f5f1 100%);
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

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

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

.hero img {
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn-primary {
  background: var(--gradient-primary);
  border: none;
  color: white;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

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

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

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

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

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

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

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

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

.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.75rem;
  color: white;
}

.problem-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

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

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

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

.feature-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  color: var(--text-light);
}

.feature-list i {
  color: var(--primary-color);
  margin-right: 1rem;
  margin-top: 0.25rem;
  font-size: 1.25rem;
}

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

.approach-card {
  padding: 2rem;
  background-color: var(--background-light);
  border-radius: 12px;
  height: 100%;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.approach-card:hover {
  border-color: var(--primary-color);
}

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

.approach-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.approach-card p {
  color: var(--text-light);
}

.differentiation-box {
  background: var(--gradient-primary);
  padding: 3rem;
  border-radius: 16px;
  color: white;
}

.differentiation-box h3 {
  color: white;
  margin-bottom: 1rem;
}

.differentiation-box h4 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

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

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

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

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

.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.25rem;
  color: white;
}

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

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

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

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

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

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

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

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

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

.timeline-item.visible {
  opacity: 1;
  transform: translateX(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;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.timeline-content p {
  color: var(--text-light);
}

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

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

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

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

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

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

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

.case-highlight {
  background-color: var(--background-white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary-color);
}

.case-highlight h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.case-highlight p {
  color: var(--text-light);
  margin-bottom: 0;
}

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

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

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

.accordion-button:not(.collapsed) {
  background-color: var(--background-light);
  color: var(--primary-color);
  box-shadow: none;
}

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

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

/* Contact Section */
.contact-section {
  background-color: var(--background-light);
}

.contact-form-wrapper {
  background-color: var(--background-white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

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

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

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

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

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

.final-cta h2 {
  color: white;
}

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

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

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

/* Footer */
.footer {
  background-color: var(--secondary-color);
  color: white;
}

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

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

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

.footer-contact li {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

/* Page Hero */
.page-hero {
  padding: 5rem 0 3rem;
  background: linear-gradient(135deg, #f7fafc 0%, #e8f5f1 100%);
}

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

/* Service Pages */
.service-hero {
  padding: 4rem 0;
}

.service-intro,
.who-for-service,
.problems-solved,
.delivery-section,
.service-results {
  padding: 4rem 0;
}

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

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

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

.who-icon i {
  font-size: 1.75rem;
  color: white;
}

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

.problem-solution-card {
  background-color: var(--background-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.ps-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

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

.delivery-step {
  background-color: var(--background-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

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

.result-box {
  background-color: var(--background-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  height: 100%;
}

.result-box i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

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

.contact-info-box {
  background-color: var(--background-light);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.contact-info-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.contact-info-box p {
  margin-bottom: 0;
  color: var(--text-light);
}

.contact-info-box a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-info-box a:hover {
  text-decoration: underline;
}

/* Thank You Page */
.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f7fafc 0%, #e8f5f1 100%);
  padding: 3rem 0;
}

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

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

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

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

.legal-section h1 {
  font-size: 2.5rem;
}

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

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

.legal-section ul {
  margin-left: 1.5rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.legal-section p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.legal-section a {
  color: var(--primary-color);
  text-decoration: none;
}

.legal-section a:hover {
  text-decoration: underline;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--secondary-color);
  color: white;
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-banner a {
  color: var(--primary-color);
}

.cookie-banner .btn-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

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

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

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

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

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

@media (max-width: 767px) {
  .hero {
    padding: 3rem 0;
  }

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

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

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

  .btn-lg {
    padding: 0.625rem 1.5rem;
    font-size: 1rem;
  }

  .hero-cta .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0 !important;
  }
}
