/* Custom CSS Variables and Design Tokens */
:root {
  /* Colors - Light theme with mint-green accents */
  --color-bg: #ffffff;
  --color-surface: #f8f9fa;
  --color-primary: #10b981;
  --color-primary-dark: #059669;
  --color-accent: #34d399;
  --color-text-main: #1f2937;
  --color-text-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-success: #10b981;
  --color-error: #ef4444;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  --gradient-accent: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);

  /* Fonts */
  --font-heading: "Merriweather", serif;
  --font-body: "Inter", sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

/* Header Styles */
.site-header {
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.navbar {
  padding: 1rem 0;
}

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

.brand-name {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

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

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2831, 41, 55, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

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

.hero-benefits {
  list-style: none;
  padding: 0;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.hero-benefits i {
  color: var(--color-primary);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

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

.hero-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

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

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

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

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

/* Section Styles */
.section-padding {
  padding: 5rem 0;
}

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

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

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

.bg-light {
  background-color: var(--color-surface);
}

/* Card Styles */
.problem-card,
.audience-card,
.service-card,
.result-card {
  background: var(--color-bg);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

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

.problem-icon,
.audience-icon,
.service-icon,
.result-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

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

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

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

/* Service Cards */
.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.25rem;
}

.service-outcome {
  color: var(--color-text-muted);
  font-style: italic;
  margin: 1.5rem 0;
}

/* Approach Section */
.approach-list {
  list-style: none;
  padding: 0;
}

.approach-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.approach-list i {
  color: var(--color-primary);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.approach-difference {
  background: var(--gradient-accent);
  border-radius: 12px;
  padding: 3rem 2rem;
  margin-top: 3rem;
}

.difference-item {
  text-align: center;
}

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

.difference-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

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

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

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

.process-step::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 80px;
  bottom: -3rem;
  width: 2px;
  background: var(--gradient-primary);
}

.process-step:last-child::before {
  display: none;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.step-content {
  flex: 1;
  padding-top: 0.5rem;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

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

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

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

.accordion-button:not(.collapsed) {
  background-color: var(--gradient-accent);
  color: var(--color-text-main);
  box-shadow: none;
}

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

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

/* Forms */
.contact-form {
  background: var(--color-bg);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

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

.form-control,
.form-select {
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  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(16, 185, 129, 0.15);
}

.form-check-input {
  border: 2px solid var(--color-border);
}

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

.form-check-label a {
  font-weight: 500;
}

/* Final CTA */
.final-cta-section {
  padding: 5rem 0;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
}

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

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

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

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

/* Footer */
.site-footer {
  background-color: #1f2937;
  color: #d1d5db;
  padding: 4rem 0 2rem;
}

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

.footer-text {
  color: #9ca3af;
  margin-bottom: 1rem;
}

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

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

.footer-links a,
.footer-contact a {
  color: #d1d5db;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--color-accent);
}

.footer-contact i {
  color: var(--color-accent);
  margin-right: 0.5rem;
  width: 20px;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  text-align: center;
  color: #9ca3af;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  border-top: 3px solid var(--color-primary);
}

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

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

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

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

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

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

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

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-muted);
  padding: 0;
  width: 30px;
  height: 30px;
}

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

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cookie-category h4 {
  font-size: 1rem;
  margin: 0;
}

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

.form-switch .form-check-input {
  width: 3rem;
  height: 1.5rem;
  cursor: pointer;
}

.form-switch .form-check-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

/* Page Header */
.page-header {
  background: var(--gradient-accent);
  padding: 3rem 0;
  text-align: center;
}

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

.page-header p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin: 0;
}

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

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

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

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

.response-note {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.response-note i {
  color: #f59e0b;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.response-note p {
  margin: 0;
  color: var(--color-text-main);
}

/* Service Detail Page */
.service-list {
  padding-left: 1.5rem;
}

.service-list li {
  margin-bottom: 0.75rem;
  color: var(--color-text-muted);
}

.problem-list {
  margin-top: 1.5rem;
}

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

.problem-item i {
  color: var(--color-error);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.problem-item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-text-main);
}

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

.delivery-format {
  background: var(--color-surface);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 1.5rem;
}

.format-item {
  margin-bottom: 2rem;
}

.format-item:last-child {
  margin-bottom: 0;
}

.format-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.format-item h4 i {
  color: var(--color-primary);
}

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

.format-item ul {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.result-box {
  background: var(--color-surface);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

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

.result-box h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.result-box p {
  color: var(--color-text-muted);
  margin: 0;
  font-size: 0.875rem;
}

.service-cta {
  background: var(--gradient-accent);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.service-cta h3 {
  margin-bottom: 1rem;
}

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

/* Sidebar */
.sidebar-box {
  background: var(--color-surface);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-box h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

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

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

.related-services a {
  color: var(--color-text-main);
  font-weight: 500;
  display: block;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

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

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

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

.legal-updated {
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

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

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

.legal-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

/* Thank You Page */
.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}

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

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

.thank-you-message {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.thank-you-submessage {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

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

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

.thank-you-contact p {
  margin: 0;
}

.thank-you-contact strong {
  display: block;
  margin-bottom: 0.5rem;
}

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

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

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

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

  .navbar-collapse {
    background: var(--color-bg);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
  }

  .process-step {
    flex-direction: column;
  }

  .process-step::before {
    left: 30px;
    top: 80px;
  }

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

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn {
    flex: 1;
  }
}

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

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

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

  .section-padding {
    padding: 3rem 0;
  }

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

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

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .btn {
    width: 100%;
  }
}
