* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

header {
  background: #4b2e19;
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}

header h1 {
  font-size: 2.6rem;
  margin-top: 15px;
}

header p {
  margin: 12px 0 25px;
  font-size: 1.1rem;
}

.logo {
  max-width: 260px;
  margin-bottom: 20px;
}

.btn {
  background: #d4a373;
  color: #000;
  padding: 14px 26px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
}

section {
  padding: 60px 20px;
  text-align: center;
}

.about p {
  max-width: 700px;
  margin: 10px auto;
}
.bilingual {
  font-weight: bold;
  color: #f4a261;
  margin: 10px 0;
  font-size: 1.1rem;
}

.card.service-areas {
  grid-column: 1 / -1; /* span all columns */
  max-width: 700px;     /* optional, keeps it centered */
}

.card {
  background: #f4f4f4;
  padding: 30px 20px;
  border-radius: 12px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 150px; /* makes all cards roughly same height */
}


.card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 20px rgba(0,0,0,0.2);
  background: #e5d1b3; /* subtle color change on hover */
}


.testimonials {
  background: #f8f4f0;
  padding: 50px 20px;
}

.testimonial-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 600px;
  font-style: italic;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.contact form {
  max-width: 420px;
  margin: auto;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 12px;
  margin: 12px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact button {
  width: 100%;
  padding: 14px;
  background: #4b2e19;
  color: #fff;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 6px;
}

footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 22px;
  font-size: 0.9rem;
}
