:root {
  --primary: #0f6c7e;
  --primary-dark: #0a4a57;
  --bg: #f4f9fb;
  --text: #222;
  --white: #ffffff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* HEADER */
.site-header {
  background: var(--primary);
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header .logo img {
  width: 60px;
}

.site-header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.site-header nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.site-header nav a:hover,
.site-header nav a.active {
  text-decoration: underline;
}

/* PAGE HEADER */
.page-header {
  text-align: center;
  padding: 30px 10px;
}

/* HOME PAGE */
.home-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: white;
  padding: 20px;
  border-radius: 12px;
}

.hero img {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
}

.hero-text {
  flex: 1;
}

/* SERVICES / REVIEWS LAYOUT */
.services-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.service-box {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 5px solid var(--primary);
  border-radius: 10px;
}

/* GALLERY PAGE */
.gallery-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.gallery-block {
  background: white;
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.gallery-block h3 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary);
}

.before-after {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.before-after img {
  width: 100%;
  max-width: 420px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* CONTACT PAGE */
.contact-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.contact-wrapper form input,
.contact-wrapper form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* FOOTER */
.site-footer {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 55px;
  height: 55px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 999;
}

/* SIMPLE BUTTON STYLE */
.btn {
  display: inline-block;
  padding: 8px 16px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

/* MOBILE */
@media (max-width: 768px) {
  .before-after img {
    max-width: 100%;
  }
}
/* Make images scale on mobile */
img {
  max-width: 100%;
  height: auto;
}

/* Make sections stack nicely on phones */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .service-box,
  .team-member,
  .gallery-item {
    width: 100%;
    margin-bottom: 20px;
  }

  .hero-text {
    padding: 20px;
    text-align: center;
  }
}
