:root {
  --primary-color: #06b6a8;
  --primary-dark: #059f92;
  --accent-light: #d1f2eb;
  --bg-color: #ffffff;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --border-color: #e5e7eb;
  --shadow-soft: 0 2px 8px rgba(6, 182, 168, 0.08);
  --shadow-medium: 0 4px 16px rgba(6, 182, 168, 0.12);
}

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

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

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

/* Navigation */
.navbar-wrapper {
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--primary-color) !important;
  letter-spacing: -0.5px;
}

.brand-icon {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.navbar-nav .btn-cta {
  background-color: var(--primary-color);
  color: white !important;
  border-radius: 8px;
  padding: 0.5rem 1.5rem !important;
  margin-left: 1rem;
  transition: background-color 0.3s ease;
}

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

.navbar-nav .btn-cta.active {
  background-color: var(--primary-dark);
}

/* Hero Section */
.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f0fffe 100%);
  border-bottom: 1px solid var(--accent-light);
}

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

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

.hero-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.feature-item i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  font-size: 1.3rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 182, 168, 0.2);
}

/* Sections */
.problems-section,
.why-section,
.results-section {
  padding: 80px 0;
  background-color: #f9fffe;
}

.services-section,
.faq-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.process-section,
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f0fffe 100%);
}

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

/* Problem Cards */
.problem-card {
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-color);
}

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

.problem-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

/* Service Cards */
.service-card {
  padding: 2.5rem;
  border-radius: 12px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-color);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

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

.service-card h3 a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-card h3 a:hover {
  color: var(--primary-color);
}

.read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.read-more:hover {
  transform: translateX(5px);
}

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

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

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  padding-right: calc(50% + 2rem);
  text-align: right;
}

.timeline-item:nth-child(even) {
  padding-left: calc(50% + 2rem);
}

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

.timeline-content {
  background-color: #f9fffe;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
}

.timeline-content h4 {
  margin-bottom: 0.5rem;
}

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

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding-left: 80px;
    padding-right: 0;
    text-align: left;
  }

  .timeline-marker {
    left: 20px;
  }

  .timeline-content {
    border-left: 3px solid var(--primary-color);
  }
}

/* Results Cards */
.result-card {
  padding: 2rem;
  border-radius: 12px;
  background-color: #ffffff;
  border: 2px solid var(--accent-light);
  transition: all 0.3s ease;
}

.result-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-medium);
}

.result-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.result-card p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* Why Choose Us */
.why-list {
  list-style: none;
}

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

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

.why-list h5 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.why-list p {
  color: var(--text-light);
  margin: 0;
}

/* FAQ */
.accordion-button {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
  font-weight: 500;
  padding: 1.5rem;
}

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

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2306B6A8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.accordion-body {
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  color: var(--text-light);
  padding: 1.5rem;
}

/* CTA Section */
.cta-section {
  text-align: center;
}

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

.cta-section p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Page Header */
.page-header {
  padding: 60px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f0fffe 100%);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

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

.page-header p {
  font-size: 1.2rem;
  color: var(--text-light);
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
}

.contact-form {
  background-color: #f9fffe;
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

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

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

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

.contact-info-card {
  background-color: #f9fffe;
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  height: 100%;
}

.contact-info-card h4 {
  margin-bottom: 2rem;
}

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

.contact-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

/* Service Detail Pages */
.service-detail {
  padding: 80px 0;
}

.service-checklist {
  list-style: none;
}

.service-checklist li {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.service-checklist i {
  color: var(--primary-color);
  margin-right: 1rem;
  font-size: 1.3rem;
}

.service-section-divider {
  height: 1px;
  background-color: var(--border-color);
  margin: 4rem 0;
}

.process-step {
  text-align: center;
  padding: 2rem;
  background-color: #f9fffe;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.step-number {
  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;
}

.process-step h5 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

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

.example-card {
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

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

.example-card h5 {
  margin-bottom: 0.75rem;
}

.example-card i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

/* Legal Content */
.legal-content {
  padding: 80px 0;
}

.legal-text {
  max-width: 800px;
  margin: 0 auto;
}

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

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

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

.legal-text ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

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

/* Footer */
.footer-section {
  background-color: #1f2937;
  color: #e5e7eb;
  padding: 3rem 0 1rem;
  margin-top: 80px;
}

.footer-title {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-tagline {
  font-size: 0.95rem;
  color: #d1d5db;
  margin-bottom: 1rem;
}

.footer-contact {
  font-size: 0.95rem;
  line-height: 1.8;
}

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

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

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.footer-small {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

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

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

  .hero-section,
  .problems-section,
  .why-section,
  .results-section,
  .services-section,
  .process-section,
  .faq-section,
  .cta-section {
    padding: 50px 0;
  }

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

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding-left: 80px;
    padding-right: 0;
    text-align: left;
  }

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