/* 
  Arizona Pets Stylesheet
  ------------------------
  Colors:
    - Primary Sky Blue: #4D96FF
    - Text Charcoal Gray: #2F2F2F
    - Background Light Blue: #F5FAFF
*/

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f5faff;
  color: #2f2f2f;
  line-height: 1.6;
}
h1 {
  font-weight: 500;
}
p {
  font-weight: 400;
  margin-block: 0.5rem;
  color: #7a8799;
}

/* Header */
/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.15); /* Glassy */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #f8faff;
  padding: 0.8rem 2rem;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

header h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #4797ff;
  margin: 0;
}

.logo img {
  display: block;
  width: 10rem;
}

/* Language Switch */
.language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #4797ff;
}

.language-switch .lang-icon {
  font-size: 1.2rem;
}

#lang-toggle {
  background: transparent;
  border: none;
  color: #4797ff;
  font-size: 0.95rem;
  font-weight: bold;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.hero {
  padding: 6rem 2rem;
  background: #f8faff;
  text-align: center;
  /* padding: 2rem 1rem; */
}

/* Services */
.services {
  padding: 2rem 1rem;
  background-color: white;
}
.services h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: #4d96ff;
  font-weight: 500;
}

.cards {
  display: flex;
  gap: 12px;
  flex-wrap: wrap; /* helps when items overflow */
}

.card {
  background: #fff;
  padding: 1rem;
  margin: 1.5rem auto;
  border-radius: 12px;
  max-width: 500px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 0.8rem;
  color: #4d96ff;
  font-weight: 400;
}

.card ul {
  margin: 1rem 1rem;
}

.card ul li {
  font-weight: 400;
  color: #7a8799;
}

.callus-btn {
  display: inline-block;
  background: #4d96ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease;
  /* width: 100%; */
}

.request-btn {
  display: inline-block;
  background: #4d96ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}
.request-btn:hover {
  background: #3578e5;
  width: 100%;
}

/* Products & Contact */
.products,
.contact {
  padding: 2rem 1rem;
  text-align: center;
  background-color: #f8faff;
}
.products h2,
.contact h2 {
  color: #4d96ff;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* Footer */
footer {
  background: #3578e5;
  color: #fff;
  text-align: center;
  padding: 1rem;
}
footer p {
  color: #fff;
  padding: 1rem;
}

.social-icons {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.social-icons svg {
  width: 36px;
  height: 36px;
  transition: transform 0.3s;
}
.social-icons svg:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 600px) {
  .card {
    margin: 1rem;
  }
  .social-icons {
    flex-direction: row;
    justify-content: center;
  }
}
.phone-link {
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
}

.phone-link:hover {
  text-decoration: underline;
  cursor: pointer;
}

.contact-box {
  padding: 8px;
}

/* Payment section */
.payments-section {
  padding: 4rem;
  text-align: center;
  background: #fff;
  width: 100%;
}
.payments {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
  max-width: 900px;
  margin: auto;
}

.payments h2 {
  color: #4d96ff;
  margin-bottom: 10px;
  font-weight: 500;
}

.payments p {
  color: #555;
  margin-bottom: 30px;
}

.pay-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pay-card {
  background: #f8faff;
  /* border: 1px solid #e0e8ff; */
  border-radius: 10px;
  padding: 20px 30px;
  flex: 1;
  min-width: 180px;
  max-width: 250px;
  text-align: center;
  transition: 0.3s;
}

.pay-card:hover {
  background: #e9f1ff;
  transform: translateY(-5px);
}

.pay-card .icon {
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
}

.pay-card p {
  margin: 0;
  font-weight: 400;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .pay-options {
    flex-direction: column;
    align-items: center;
  }
}
