/*
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-color: #f9fafb;
  line-height: 1.6;
}

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

.btn {
  display: inline-block;
  background-color: #4f46e5;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

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

.whatsapp-btn {
  background-color: #25d366;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

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

.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: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  font-weight: 500;
}

.section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 24px;
  color: #4f46e5;
  font-weight: 700;
  text-align: center;
}

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

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

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.5rem;
  color: #3730a3;
}

.card p {
  margin: 0;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.4;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.125rem;
  color: #374151;
  text-align: center;
}

.why-choose ul {
  max-width: 700px;
  margin: 0 auto;
  list-style-type: disc;
  padding-left: 20px;
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.6;
}

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

.cta {
  background: #4f46e5;
  color: white;
  text-align: center;
  padding: 60px 20px;
  border-radius: 20px;
  margin: 40px 0;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.cta p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  font-weight: 500;
}

.contact {
  max-width: 600px;
  margin: 0 auto 80px auto;
  padding: 0 20px;
}

.contact h2 {
  margin-bottom: 24px;
  color: #4f46e5;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

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

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

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

.contact-form button.btn {
  align-self: center;
  padding: 14px 36px;
  font-size: 1.125rem;
  background-color: #4f46e5;
  border-radius: 30px;
  color: white;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
}

.contact-form button.btn:hover,
.contact-form button.btn:focus {
  background-color: #7c3aed;
  outline: none;
}

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

  .hero p {
    font-size: 1rem;
  }

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

  .cta p {
    font-size: 1rem;
  }
}