
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f7f9fb;
  color: #1f2937;
  padding: 2.5rem 1rem;
}


h1 {
  font-size: 2.5rem;
  color: #2563eb;
  margin-top: 1rem;
  text-align: center;
}

h2, h3 {
  text-align: center;
}

.tagline {
  color: #6b7280;
  margin-top: 0.25rem;
  text-align: center;
}

p {
  line-height: 1.6;
}


.buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.button {
  padding: 0.7rem 1.3rem;
  background: #2563eb;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
}


@keyframes glowPulse {
  0% { box-shadow: 0 0 0 rgba(37, 99, 235, 0.3); }
  100% { box-shadow: 0 0 20px rgba(37, 99, 235, 0.6); }
}

.glow:hover {
  animation: glowPulse 0.8s alternate infinite;
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 1s ease-out forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }


.logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

@keyframes catBounce {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.cat-logo {
  animation: catBounce 2.5s ease-in-out infinite;
}

@keyframes blinkEyes {
  0%, 90% { ry: 8; }
  92%, 96% { ry: 1; }
  100% { ry: 8; }
}

.blink {
  animation: blinkEyes 2s infinite;
}

main {
  max-width: 900px;
  margin: 0 auto;
}

section {
  margin-top: 2rem;
}

section > h2,
section > h3,
section > p {
  text-align: center;
}



.contact-section {
  margin-top: 3rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}


.contact-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.25s ease;
  text-align: left;
  
}
.contact-card {
  position: relative;
}

.contact-card label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  cursor: pointer;
}


.contact-card input {
  position: absolute;
  opacity: 0;
}


.contact-card .icon {
  font-size: 2rem;
}


.contact-card h3 {
  margin: 0;
}

.contact-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #475569;
}


.contact-card:hover {
  border-color: #93c5fd;
}


.contact-card:has(input:checked) {
  border-color: #2563eb;
  background-color: #eff6ff;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
  transform: translateY(-4px);
}


footer {
  margin-top: 3rem;
  text-align: center;
  color: #6b7280;
}
