body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fafafa;
}

/* HEADER */
/* HEADER */
.header {
  background: #ffb3b3   ;
  border-bottom: 1px solid #e5e5e5;
  padding: 35px 20px;
}

.header-content {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.logo-front {
  max-width: 260px;
  margin-bottom: -25px;
}

.tagline {
  font-size: 17px;
  color: #444;
  margin-bottom: 20px;
}

/* BUTTONS */
.cta {
  margin-top: 10px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  margin: 6px;
  background: #c70000;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.btn.whatsapp {
  background: #25d366;
}


/* SECTIONS */
.section {
  padding: 50px 20px;
  max-width: 1100px;
  margin: auto;
}

.section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #c70000;
  font-size: 28px;
}

.light {
  background: #f3f3f3;
  border-radius: 24px;
  margin: 40px auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* CARDS */
.cards {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: white;
  padding: 20px;
  width: 300px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 14px; /* ✅ rounded images */
}

/* LIST */
.list {
  list-style: none;
  padding: 0;
  max-width: 450px;
  margin: auto;
  font-size: 17px;
}

/* WHY CHOOSE US - CENTER FIX */
.why-us {
  text-align: center;
}

.why-us .list {
  display: inline-block;
  text-align: left;
  margin-top: 10px;
}


.list li {
  padding: 10px 0;
}

/* MAP */
.map iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: 16px;
}

/* GALLERY */
.gallery {
  overflow-x: auto;
  padding: 10px 0;
  -webkit-overflow-scrolling: touch;
}

.gallery-track {
  display: flex;
  gap: 20px;
  scroll-snap-type: x mandatory;
}

.gallery-track img {
  flex: 0 0 auto;
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 18px;
  scroll-snap-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.gallery-track img:hover {
  transform: scale(1.03);
}

.gallery-hint {
  text-align: center;
  font-size: 14px;
  color: #777;
  margin-top: 15px;
}


/* FOOTER */
.footer {
  background: #1f1f1f;
  color: #ccc;
  text-align: center;
  padding: 18px;
  font-size: 14px;
}
