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

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

.hero {
  min-height: 85vh;
  background: linear-gradient(135deg, #2563eb, #9333ea);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

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

.hero h1 {
  font-size: 3.75rem;
  margin-bottom: 24px;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.375rem;
  margin-bottom: 36px;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}

.section {
  padding: 60px 40px;
  max-width: 1100px;
  margin: 40px auto;
  background: white;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 28px;
  color: #4b5563;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.02em;
}

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

.card {
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card h3 {
  font-size: 1.625rem;
  margin-bottom: 16px;
  color: #5b21b6;
  font-weight: 800;
  line-height: 1.2;
}

.card p {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.5;
  flex-grow: 1;
}

.about p,
.why-choose-us ul,
.contact p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1875rem;
  color: #4b5563;
  line-height: 1.7;
  text-align: center;
}

.why-choose-us ul {
  list-style: disc inside;
  padding-left: 0;
  margin-top: 20px;
}

.why-choose-us ul li {
  margin-bottom: 14px;
  font-weight: 600;
}

.cta {
  background: #7c3aed;
  color: white;
  text-align: center;
  padding: 70px 40px;
  border-radius: 14px;
  margin-bottom: 40px;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.4);
}

.cta h2 {
  font-size: 2.75rem;
  margin-bottom: 32px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.btn {
  display: inline-block;
  background-color: #4f46e5;
  color: white;
  padding: 16px 36px;
  border-radius: 36px;
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.5);
}

.btn:hover,
.btn:focus {
  background-color: #3730a3;
  box-shadow: 0 10px 30px rgba(55, 48, 163, 0.7);
  outline: none;
}

.whatsapp-cta {
  background-color: #25d366;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
  margin-top: 14px;
}

.whatsapp-cta:hover,
.whatsapp-cta:focus {
  background-color: #1ebe57;
  box-shadow: 0 10px 30px rgba(30, 190, 87, 0.7);
}

.contact a {
  color: #2563eb;
  text-decoration: underline;
  font-weight: 600;
}

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

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

  .section {
    padding: 40px 20px;
    margin: 30px 10px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 1.125rem;
  }

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