/* FILE: css/style.css */

:root {
  /* Mint-green theme colors */
  --primary-color: #4ecca3;
  --primary-dark: #3db489;
  --primary-light: #6fddb8;
  --secondary-color: #393e46;
  --accent-color: #eeeeee;
  --text-dark: #222831;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.08);
  --shadow-hover: rgba(0, 0, 0, 0.15);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lora", serif;
  font-weight: 700;
  line-height: 1.3;
}

/* Navigation */
.navbar {
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar.scrolled {
  background-color: var(--white) !important;
  box-shadow: 0 2px 10px var(--shadow);
}

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

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

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

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-hover);
}

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

.btn-outline-secondary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-light:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-hover);
}

/* Hero Section */
.hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f5f0 100%);
}

.hero-section img {
  animation: fadeInRight 1s ease;
}

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

/* Problem Cards */
.problem-card {
  transition: all 0.3s ease;
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
}

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

.icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

/* Approach Cards */
.approach-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--shadow);
  transition: all 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px var(--shadow-hover);
}

.approach-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
}

/* Service Cards */
.service-card {
  background: var(--white);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px var(--shadow-hover) !important;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 2rem 0;
}

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

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

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

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 0;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border: 4px solid var(--white);
  border-radius: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px var(--shadow);
  z-index: 1;
}

.timeline-content {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--shadow);
}

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

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

  .timeline-marker {
    left: 30px;
  }
}

/* Result Cards */
.result-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--shadow);
  transition: all 0.3s ease;
}

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

.result-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  margin: 0 auto;
}

/* Forms */
.form-control {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

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

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
}

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

.footer h5 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

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

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

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

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

/* Service Page Specific */
.service-hero {
  padding: 120px 0 60px !important;
}

.problem-box {
  background: var(--white);
  transition: all 0.3s ease;
}

.problem-box:hover {
  box-shadow: 0 8px 20px var(--shadow-hover);
}

.delivery-item {
  transition: all 0.3s ease;
}

.delivery-item:hover {
  transform: translateX(5px);
}

.custom-list li {
  margin-bottom: 1rem;
  padding-left: 0.5rem;
}

/* Contact Page */
.contact-hero {
  padding: 120px 0 60px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
}

.contact-info-item {
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: var(--bg-light);
}

/* Thank You Page */
.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
}

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

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

.legal-page h2 {
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-section {
    padding: 100px 0 60px;
  }

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

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 40px;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

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

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Accordion Customization */
.accordion-button {
  background-color: var(--white);
  color: var(--text-dark);
  font-weight: 600;
  border: none;
}

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

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(78, 204, 163, 0.25);
}

.accordion-item {
  border: 1px solid #e0e0e0;
  margin-bottom: 1rem;
  border-radius: 8px !important;
  overflow: hidden;
}

.accordion-body {
  padding: 1.5rem;
}
