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

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #111827;
  background: #f9fafb;
  line-height: 1.6;
}

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

h1, h2, h3 {
  color: #1f2937;
  margin-bottom: 16px;
}

.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 h1 {
  font-size: 48px;
  margin-bottom: 12px;
  font-weight: 700;
}

.hero p {
  font-size: 20px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
}

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

.btn-primary:hover {
  background-color: #5b21b6;
}

.btn-whatsapp {
  background-color: #25d366;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #1ebe57;
}

.services {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: white;
  padding: 28px 24px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  color: #4f46e5;
}

.card p {
  font-size: 16px;
  color: #374151;
}

.about, .why-choose, .cta, .contact {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.about h2, .why-choose h2, .cta h2, .contact h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: #1f2937;
}

.about p {
  font-size: 18px;
  color: #4b5563;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.why-choose ul {
  list-style-type: disc;
  padding-left: 20px;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  color: #374151;
  font-size: 18px;
  line-height: 1.6;
}

.why-choose ul li {
  margin-bottom: 12px;
}

.cta {
  background: #7c3aed;
  color: white;
  padding: 60px 20px;
  border-radius: 18px;
}

.cta h2 {
  margin-bottom: 32px;
}

.contact form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact label {
  margin-bottom: 6px;
  font-weight: 600;
  color: #374151;
}

.contact input,
.contact textarea {
  padding: 12px 16px;
  margin-bottom: 20px;
  border: 1.5px solid #d1d5db;
  border-radius: 12px;
  font-size: 16px;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.contact input:focus,
.contact textarea:focus {
  border-color: #7c3aed;
  outline: none;
}

.contact button {
  align-self: flex-start;
  background-color: #7c3aed;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact button:hover {
  background-color: #5b21b6;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .services h2, .about h2, .why-choose h2, .cta h2, .contact h2 {
    font-size: 28px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .contact form {
    width: 100%;
  }
}
