/*
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: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  box-shadow: 0 8px 15px rgba(79, 70, 229, 0.3);
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  background-color: #7c3aed;
  box-shadow: 0 12px 20px rgba(124, 58, 237, 0.5);
  outline: none;
}

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

.whatsapp-btn:hover,
.whatsapp-btn:focus {
  background-color: #1ebe57;
  box-shadow: 0 12px 20px rgba(30, 190, 87, 0.5);
}

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

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  font-weight: 400;
  color: #d1d5db;
}

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

.services h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: #111827;
}

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

.card {
  background: white;
  padding: 30px 25px;
  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,
.card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  outline: none;
}

.card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #4f46e5;
  font-weight: 700;
}

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

.cta {
  background-color: #7c3aed;
  color: white;
  text-align: center;
  padding: 60px 20px;
  margin-top: 60px;
  border-radius: 20px 20px 0 0;
}

.cta h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #d1d5db;
}

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

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

  .services h2 {
    font-size: 2rem;
  }

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

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