body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f7fa;
  color: #1a2b38;
}

/* HERO */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url("assets/IMG_8308.JPEG") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.hero-logo {
  width: 180px;
  background: white;
  padding: 10px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.eyebrow {
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-text {
  max-width: 600px;
  margin: auto;
}

.btn-primary {
  display: inline-block;
  margin-top: 20px;
  background: white;
  color: #0b3d5c;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}

/* SECTIONS */
.section {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 40px 20px;
}

.footer-badge {
  width: 120px;
  margin-top: 10px;
}

/* FLOATING CALL BUTTON */
.call-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0b3d5c;
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
}
