* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  background: #0f0f0f;
  color: #f2f2f2;
  line-height: 1.6;
}

/* HERO */
.hero {
  text-align: center;
  padding: 40px 20px;
  background: #111;
}

.logo {
  max-width: 180px;
  margin-bottom: 15px;
}

h1 {
  color: #5ecac3;
  margin: 10px 0;
  font-size: 32px;
}

.hero p {
  color: #ccc;
  margin-bottom: 20px;
}

/* SECTIONS */
.section {
  padding: 40px 20px;
  text-align: center;
}

.section.dark {
  background: #181818;
}

.section h2 {
  color: #5ecac3;
  margin-bottom: 20px;
}

/* SERVICES */
.services {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.services li {
  margin: 10px 0;
  padding: 10px;
  background: #222;
  border-radius: 6px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 22px;
  margin: 10px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.2s ease;
}

.btn.primary {
  background: #5ecac3;
  color: #000;
}

.btn.primary:hover {
  background: #4ab4ad;
}

.btn.secondary {
  border: 2px solid #5ecac3;
  color: #5ecac3;
}

.btn.secondary:hover {
  background: #5ecac3;
  color: #000;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  background: #222;
}

/* TESTIMONIALS */
blockquote {
  max-width: 700px;
  margin: 20px auto;
  font-style: italic;
  background: #222;
  padding: 20px;
  border-left: 4px solid #5ecac3;
  border-radius: 6px;
}

/* CONTACT */
.contact-buttons {
  margin-top: 20px;
}

.section a {
  color: #5ecac3;
  text-decoration: none;
}

/* MAP */
.map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 6px;
  margin-top: 20px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #000;
  font-size: 14px;
  color: #777;
}
/* LIGHTBOX */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  cursor: pointer;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}