/* FILE: css/style.css */

:root {
  --primary-color: #2b6cb0;
  --primary-dark: #1e4e8c;
  --primary-light: #4a90e2;
  --accent-color: #3182ce;
  --text-dark: #1a202c;
  --text-medium: #4a5568;
  --text-light: #718096;
  --bg-white: #ffffff;
  --bg-light: #f7fafc;
  --bg-lighter: #edf2f7;
  --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 25px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

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

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

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

.section-header {
  margin-bottom: 60px;
}

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

.section-description {
  font-size: 1.125rem;
  color: var(--text-medium);
  max-width: 800px;
  margin: 0 auto;
}

.lead {
  font-size: 1.125rem;
  color: var(--text-medium);
}

/* Navigation */
.navbar {
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.brand-text {
  font-family: "Libre Baskerville", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: var(--transition);
}

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

/* Buttons */
.btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

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

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

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

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

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

/* Hero Section */
.hero-section {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

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

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

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

/* Module Cards */
.module-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--border-color);
}

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

.module-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

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

/* Feature List */
.feature-list {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

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

/* Approach Cards */
.approach-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-color);
  height: 100%;
}

.approach-card h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

/* Timeline */
.results-timeline {
  position: relative;
  padding-left: 2rem;
}

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

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: var(--transition);
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-marker {
  position: absolute;
  left: -2.5rem;
  top: 0;
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.timeline-content h4 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Forms */
.consultation-form,
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
}

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

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

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

.form-check-label {
  color: var(--text-medium);
}

.form-check-label a {
  color: inherit;
}

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

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

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

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

.accordion-body {
  padding: 1.25rem;
  color: var(--text-medium);
}

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

.cta-title {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 60px 0 20px;
}

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

.footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.875rem;
}

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

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

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

/* Service Pages */
.service-hero,
.page-hero {
  padding: 60px 0 40px;
  background-color: var(--bg-light);
}

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

.service-intro,
.page-intro {
  font-size: 1.25rem;
  color: var(--text-medium);
}

.service-target,
.target-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
}

.target-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-right: 1.5rem;
  flex-shrink: 0;
}

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

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

.problem-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-medium);
}

.problem-list i {
  position: absolute;
  left: 0;
  top: 0.75rem;
  color: #e53e3e;
}

.delivery-timeline {
  margin-top: 2rem;
}

.delivery-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
}

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

.step-content h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

/* Service Sidebar */
.service-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.sidebar-card h4 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.service-details {
  list-style: none;
  padding: 0;
}

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

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

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

.related-services {
  list-style: none;
  padding: 0;
}

.related-services li {
  margin-bottom: 0.75rem;
}

.related-services a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

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

.related-services i {
  margin-right: 0.5rem;
  font-size: 0.875rem;
}

/* Contact Page */
.contact-info-box {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
}

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

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

.contact-info-item i {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-info-item h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

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

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

.contact-note {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid var(--border-color);
}

.contact-note h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.contact-note ul {
  padding-left: 1.25rem;
  color: var(--text-medium);
}

/* Thank You Page */
.thank-you-content {
  padding: 4rem 2rem;
  text-align: center;
}

.success-icon {
  font-size: 5rem;
  color: #48bb78;
  margin-bottom: 2rem;
}

.next-steps {
  margin: 3rem 0;
}

.step-box {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  height: 100%;
}

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

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

/* Legal Pages */
.legal-content {
  font-size: 1rem;
  line-height: 1.8;
}

.legal-content h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--border-color);
}

.legal-content h2:first-child {
  border-top: none;
  margin-top: 0;
}

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

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

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

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

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

.contact-box {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
}

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

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

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

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

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

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

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

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

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

  .btn {
    width: 100%;
    text-align: center;
  }

  .results-timeline {
    padding-left: 1.5rem;
  }

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