@import url('https://fonts.googleapis.com/css2?family=Mulish&display=swap');

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  font-family: "Mulish", sans-serif;
  font-size: 1.1em;
  color: #003d8d;
}

a {
  color: #3ac47e;
  text-decoration: none;
}

a:hover {
  color: #339262;
}

hr {
  border-top: 3px solid #003d8d;
  width: 25%;
  margin: 37px auto;
}

h1,h2,h3,h4,h5,h6 {
  text-align: center;
  margin: 19px 0;
}

h1 {
  font-size: 2.0em;
}

h2 {
  font-size: 1.75em;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.25em;
}

p {
  margin: 0 10%;
}

.c {
  text-align: center;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 60px;
  background-color: #ccc;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  height: 50px;
  display: flex;
  align-content: center;
  justify-content: left;
}

.nav-links {
  list-style: none;
  justify-content: right;
  align-items: center;
  font-weight: bold;
  font-size: 1.2em;
}

.nav-links a {
  text-decoration: none;
  color: #003d8d;
}

.nav-links a:hover {
  color: #0258c9;
}

.nav-links li {
  margin-right: 17px;
  display: inline;
}

.btn {
  display: inline-block;
  background-color: #3ac47e;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 5px;
}

.btnbody {
	display: inline-block;
	background-color: #003d8d;
	padding: 8px 12px;
	text-decoration: none;
	border-radius: 5px;
}

/* the “three bars” icon – hidden by default */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  padding: 0;
  margin-right: 1rem;
}

.hamburger span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: #333;
}

.hero-container {
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-container img {
	max-width: 400px;
	background-color: #b2e6f0;
	padding: 29px;
}

.hero {
	background-color: #fff;
	background-image: url("/img/hero.jpg");
	height: 600px;
	width: 80%;
	margin: 27px auto;
}

.fourbars {
  display: flex;
  justify-content: center;
  padding: 15px 0;
  max-width: 80%;
  margin: 0 auto;
}

.bar {
  width: 25%;
  padding: 7px;
}

.bar1 {
  background-color: #b2e6f0;
  color: #000;
}

.bar2 {
  background-color: #7cd3e9;
  color: #555;
}

.bar3 {
  background-color: #4da5e0;
  color: #ddd;
}

.bar4 {
  background-color: #1e5bbe;
  color: #fff;
}

.svc-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;   
  width: 80%;
  margin: 27px auto;
  gap: 20px;
}

.svc {
  flex: 0 1 calc(50% - 20px);
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.svc img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
}


.svc p {
  text-align: center;
}

.price {
  font-size: 2.0em;
  font-weight: bold;
  color: #3ac47e;
  margin-top: auto;
}

.faq {
  width: 80%;
  max-width: 800px;
  margin: 2rem auto;
  font-family: "Cuprum", sans-serif;
}

.faq h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem;
  background: #f0f8ff;
  border: 2px solid #3ac47e;
  border-radius: 5px;
  position: relative;
  font-weight: bold;
}

/* hide native marker (Firefox) */
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* add our own plus/minus */
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

/* when open, change to minus */
.faq-item[open] summary::after {
  content: "−";
  transform: rotate(0deg);
}

/* the hidden answer panel */
.faq-item .answer {
  padding: 1rem;
  border-left: 2px solid #3ac47e;
  border-right: 2px solid #3ac47e;
  border-bottom: 2px solid #3ac47e;
  border-radius: 0 0 5px 5px;
  background: #fff;
  animation: fadeIn 0.2s ease-in;
}

/* small fade-in for answer */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* spacing between items */
.faq-item + .faq-item {
  margin-top: 1rem;
}

.contactwrapper {
  display: flex;
  width: 80%;
  margin: 27px auto;
  justify-content: space-between;
}

.contactinfo {
  text-align: center;
  width: 50%;
}

.calltext {
  font-weight: bold;
  color: #3ac47e;
  font-size: 1.2em;
}

.contactform {
  width: 50%;
}

/* contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  font-size: 1em;
}

.contact-form label {
  display: block;
  font-weight: bold;
  color: #003d8d;
  margin-bottom: 0.5rem;
}

.contact-form .required {
  display: inline;
  color: #3ac47e;
  margin-left: 4px;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-top: 0.25rem;
  padding: 0.5rem;
  border: 2px solid #003d8d;
  border-radius: 5px;
  background-color: #fff;
  font-family: inherit;
  font-size: 1em;
  color: #003d8d;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #3ac47e;
}

.contact-form button {
  align-self: flex-start;
  padding: 0.75rem 1.5rem;
  background-color: #3ac47e;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.contact-form button:hover {
  background-color: #339262;
}

/* hide the honeypot field off-screen */
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.success-banner {
  text-align: center;
  color: red;
  font-weight: bold;
  font-size: 1.5em;
}

footer {
  width: 100%;
  text-align: center;
  background-color: #ccc;
}

footer img {
  margin: 27px auto;
  width: 150px;
}

/* MOBILE ADJUSTMENTS */

@media (max-width: 768px) {
  /* hide the normal inline links */
  .nav-links {
    position: absolute;
    top: 60px;      /* sit right below the bar */
    left: 0;        /* span full viewport */
    right: 0;       /* span full viewport */
    width: 100%;    /* full width */
    background-color: #ccc;
    color: blue;
    display: flex;
    flex-direction: column;
    align-items: center;            /* center each item horizontally */
    transform: translateX(100%);    /* off-screen to the right */
    transition: transform 0.3s ease-in-out;
    z-index: 10;                    /* above page content */
  }

  /* when open, slide in */
  .nav-links.open {
    transform: translateX(0);
  }

  /* stack & center each link/button */
  .nav-links li {
    width: 100%;       /* full width row */
    margin: 0.75rem 0; /* vertical spacing */
    text-align: center;
  }

  /* show the hamburger toggle */
  .hamburger {
    display: flex;
  }
  
  .fourbars {
    flex-wrap: wrap;
  }
  
  .bar {
    width: 80%;
    padding-bottom: 13px;
  }
  
  .svc {
    flex-wrap: wrap;
  }
  
  .svc-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0;
    gap: 1rem;
  }

  .svc {
    flex: none;
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .contactwrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .contactinfo,
  .contactform {
    width: 90%;
    max-width: 500px;
    margin: 1rem 0;
  }

  .contactinfo {
    text-align: center;
  }


}

