body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
}

/* HERO */
.hero {
  background: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c") center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-overlay {
  background: rgba(0,0,0,0.55);
  padding: 40px;
  text-align: center;
  color: white;
  width: 100%;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  background: #ffb300;
  padding: 12px 25px;
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

/* SECTION STYLES */
section {
  padding: 50px 20px;
  max-width: 1100px;
  margin: auto;
}

h2 {
  margin-bottom: 20px;
  color: #222;
  text-align: center;
}

/* SERVICES */
.service-list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-item {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* CONTACT */
.contact p {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* FLOATING CALL BUTTON */
.floating-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ffb300;
  color: black;
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}
