* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff8eb;
  color: #073c2e;
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at top left, rgba(255,165,0,0.15), transparent 25%),
    radial-gradient(circle at right, rgba(255,165,0,0.12), transparent 20%),
    linear-gradient(180deg, #fff4d8 0%, #fff8eb 100%);

  padding: 30px 10% 70px;
  text-align: center;
}

.navbar {
  position: relative;
  z-index: 5;

  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 40px;
}

.navbar ul {
  display: flex;
  gap: 30px;

  list-style: none;
}

.navbar a {
  text-decoration: none;
  color: #073c2e;
  font-weight: 700;
  text-transform: uppercase;
}

.active {
  color: #e68119;
}

.top-call {
  background: #0b573c;
  color: white !important;

  padding: 12px 24px;

  border-radius: 30px;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-logo {
  width: 260px;
  border-radius: 50%;

  margin-bottom: 20px;

  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.hero h1 {
  font-family: 'Fredoka', sans-serif;

  font-size: 60px;
  text-transform: uppercase;

  margin-bottom: 20px;
}

.hero p {
  font-size: 22px;
  max-width: 750px;

  margin: auto auto 35px;

  line-height: 1.7;
}

.hero span {
  color: #e68119;
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;

  flex-wrap: wrap;
}

.btn {
  padding: 18px 35px;

  border-radius: 14px;

  text-decoration: none;
  font-weight: 800;

  transition: 0.25s;
}

.call-btn {
  background: linear-gradient(135deg, #f69b18, #dc6908);
  color: white;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #2c9446, #0b573c);
  color: white;
}

.btn:hover {
  transform: translateY(-4px);
}

/* FADED BUG SYMBOLS */

.bug {
  position: absolute;
  z-index: 1;
  opacity: 0.13;
  font-size: 120px;
  filter: grayscale(1);
  pointer-events: none;
}

.bug-left {
  left: 4%;
  top: 180px;
}

.bug-middle {
  left: 13%;
  top: 390px;
  font-size: 90px;
}

.bug-right {
  right: 8%;
  top: 250px;
  font-size: 130px;
}

/* TRUST */

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 20px;

  padding: 50px 10%;

  background: white;
}

.trust-item {
  text-align: center;
}

.trust-item h3 {
  margin-bottom: 10px;
}

/* SERVICES */

.services {
  padding: 80px 10%;

  background: #f8f8f8;
}

.services h2 {
  text-align: center;

  font-family: 'Fredoka', sans-serif;

  font-size: 42px;

  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

.service-card {
  background: white;

  padding: 35px;

  border-radius: 20px;

  text-align: center;

  box-shadow: 0 10px 25px rgba(0,0,0,0.08);

  transition: 0.25s;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-icon {
  width: 60px;
  height: 60px;

  margin: auto auto 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: white;

  font-size: 28px;
}

.green {
  background: #0b573c;
}

.orange {
  background: #e68119;
}

.service-card h3 {
  margin-bottom: 12px;
}

/* ENQUIRY */

.enquiry-section {
  background:
    radial-gradient(circle at 5% 35%, rgba(230,129,25,0.12), transparent 22%),
    radial-gradient(circle at 90% 20%, rgba(230,129,25,0.10), transparent 20%),
    linear-gradient(135deg, #0b573c, #073c2e);

  color: white;

  padding: 90px 10%;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 50px;

  align-items: center;
}

.enquiry-text {
  position: relative;

  min-height: 620px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.enquiry-text h2 {
  font-family: 'Fredoka', sans-serif;

  font-size: 50px;

  margin-bottom: 18px;
}

.enquiry-text p {
  font-size: 18px;
  line-height: 1.8;

  color: #d8d8d8;

  max-width: 620px;
}

.shield-logo {
  display: block;

  width: 340px;

  margin: 45px auto 0;

  filter: drop-shadow(0 18px 35px rgba(0,0,0,0.35));

  opacity: 0.96;
}

.enquiry-bug {
  position: absolute;
  opacity: 0.10;
  font-size: 110px;
  filter: grayscale(1);
  pointer-events: none;
}

.bug-one {
  left: -25px;
  bottom: 40px;
}

.bug-two {
  right: 80px;
  bottom: 5px;
  font-size: 85px;
}

.enquiry-form {
  background: #f4ede1;

  padding: 35px;

  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.enquiry-form label {
  display: block;

  margin-bottom: 8px;

  font-weight: 700;

  color: #073c2e;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;

  padding: 14px;

  margin-bottom: 22px;

  border: 2px solid #ddd;
  border-radius: 8px;

  background: white;

  font-family: 'Poppins', sans-serif;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: #e68119;
}

.enquiry-form input[type="file"] {
  background: #fff8eb;
  border: 2px dashed #e68119;
  color: #073c2e;
  cursor: pointer;
}

.enquiry-form button {
  width: 100%;

  padding: 16px;

  border: none;
  border-radius: 10px;

  background: linear-gradient(135deg, #f69b18, #dc6908);

  color: white;

  font-weight: 800;
  font-size: 18px;

  cursor: pointer;

  transition: 0.25s;
}

.enquiry-form button:hover {
  transform: translateY(-3px);
}

/* CONTACT */

.bottom-info {
  background: linear-gradient(135deg, #06422f, #0b573c);

  color: white;

  padding: 45px 10%;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 25px;
}

.bottom-card h3 {
  margin-bottom: 10px;
}

/* MOBILE */

@media(max-width: 900px) {

  .services-grid,
  .trust-row,
  .bottom-info,
  .enquiry-section {
    grid-template-columns: 1fr;
  }

  .enquiry-text {
    min-height: auto;
  }

}

@media(max-width: 700px) {

  .navbar {
    flex-direction: column;
    gap: 20px;
  }

  .navbar ul {
    flex-wrap: wrap;
    justify-content: center;
  }

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

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

  .hero-logo {
    width: 190px;
  }

  .enquiry-text h2 {
    font-size: 38px;
  }

  .shield-logo {
    width: 230px;
  }

}