/*
Theme Name: Convotra Theme
Author: Convotra AI
Version: 1.1
*/

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #111827;
  background: #f9fafb;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.hero {
  min-height: 80vh;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.hero-content {
  max-width: 700px;
}

.hero .tagline {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  opacity: 0.85;
}

.hero h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero .subheadline {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #d1d5db;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: #7c3aed;
  color: white;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #5b21b6;
  outline: none;
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: white;
  color: #7c3aed;
  outline: none;
}

.section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #4b5563;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #374151;
}

p {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.features-list,
.categories-list,
.stats-list {
  list-style: none;
  padding-left: 0;
  max-width: 600px;
  margin: 1rem auto 0 auto;
  color: #374151;
}

.features-list li,
.categories-list li,
.stats-list li {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  position: relative;
  padding-left: 28px;
}

.features-list li::before,
.categories-list li::before {
  content: "\2705";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.stats-list li {
  font-weight: 600;
  font-size: 1.25rem;
  color: #4f46e5;
  padding-left: 0;
  position: relative;
}

.stats-list li strong {
  font-weight: 700;
  color: #7c3aed;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 900px;
  margin: auto;
}

.service-group {
  flex: 1 1 300px;
  background: #f3f4f6;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.service-group ul {
  list-style: none;
  padding-left: 0;
  color: #374151;
}

.service-group ul li {
  margin-bottom: 0.75rem;
  padding-left: 20px;
  position: relative;
}

.service-group ul li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: #7c3aed;
  font-weight: bold;
}

.call-to-action {
  text-align: center;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  color: white;
  padding: 60px 20px;
  border-radius: 12px;
}

.call-to-action h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.call-to-action p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #d1d5db;
}

.call-to-action .btn-primary {
  background-color: white;
  color: #7c3aed;
  padding: 1rem 3rem;
  font-size: 1.125rem;
  border-radius: 40px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.call-to-action .btn-primary:hover,
.call-to-action .btn-primary:focus {
  background-color: #e0cfff;
  color: #5b21b6;
  outline: none;
}

.footer-tagline {
  background: #111827;
  color: #9ca3af;
  text-align: center;
  padding: 30px 20px;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.footer-tagline p {
  margin: 0.25rem 0;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero .subheadline {
    font-size: 1rem;
  }
  .services-container {
    flex-direction: column;
  }
  .service-group {
    max-width: 100%;
  }
  .call-to-action h2 {
    font-size: 1.75rem;
  }
  .call-to-action p {
    font-size: 1rem;
  }
}
