* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  color: #333;
}

/* HEADER */
.site-header {
  background: #000;
  color: white;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  max-width: 1100px;
  margin: auto;
}

.logo {
  max-width: 120px;
  filter: brightness(0) invert(1);
}

.phone-btn {
  color: #ff6608;
  font-weight: bold;
  text-decoration: none;
}

/* HERO */
.hero {
  text-align: center;
  padding: 50px 20px;
}

.hero h1 {
  font-size: 36px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* BUTTONS */
.cta-btn {
  display: inline-block;
  background: #ff6608;
  color: black;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

/* ICON ROW */
.icon-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 25px;
}

.icon-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.icon-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.icon-btn.maps {
  background: #ff6608;
}

.icon-btn.facebook {
  background: #1877f2;
}

.icon-btn:hover {
  transform: scale(1.08);
}

/* SECTIONS */
section {
  background: white;
  margin: 25px auto;
  padding: 25px 20px;
  max-width: 900px;
  border-radius: 10px;
}

/* FOOTER */
footer {
  background: #000;
  color: white;
  text-align: center;
  padding: 20px;
}

/* MOBILE */
@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    gap: 10px;
  }

  .hero h1 {
    font-size: 28px;
  }
}
.before-after {
  text-align: center;
}

.slider {
  position: relative;
  max-width: 600px;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 12px;
}

.slide {
  display: none;
  position: relative;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.75);
  color: white;
  padding: 6px 12px;
  font-weight: bold;
  border-radius: 4px;
}

.label.after {
  background: #ff6608;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  font-size: 32px;
  padding: 6px 14px;
  cursor: pointer;
  border-radius: 50%;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

