* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  /* background: #f5f5f5; */
  background: #ffffff;

  color: #222;
}

.main-wrapper {
  max-width: 100%;
  padding: 0 1rem;
}

/* Header */
.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3vw;
  /* background: #f5f5f5; */
    background: #ffffff;

}

.logo-tag {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-tag img {
  height: 140px;
  /* border-radius: 50%; */
  /* box-shadow: 0 4px 8px rgba(0,0,0,0.1); */
}

.call-button {
  background: #FFA500;
  color: #000;
  padding: 0.9rem 1.6rem;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
}

.call-button:hover {
  background: #ff9400;
  transform: translateY(-2px);
}

/* Hero Main Section */
.hero-main {
  padding: 0.5rem 0; /* was 1rem 0 */
}

.hero-split.with-gallery {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
  padding: 1rem 3vw;
}

.hero-text {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}


.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.subheadline {
  font-size: 1.3rem;
  color: #555;
}

.trust-tagline {
  font-size: 1.1rem;
  font-weight: 500;
  color: #555;
  margin-top: 0.5rem;
}

.cta-button {
  background: #d93700;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: fit-content;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cta-button:hover {
  background: #ffc109;
  transform: translateY(-2px);
}

.trust-boosters {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  row-gap: 1rem;
}

.trust-boosters span {
  display: inline-flex;
  flex-direction: row; /* default for desktop */
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  background: #ddd;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  color: #111;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  font-size: 1rem;
  font-weight: 600;
  min-width: 240px;
  text-align: center;
}

@media (max-width: 480px) {
  .trust-boosters span {
    flex-direction: column; 
    gap: 0.3rem;
    min-width: 160px; 
    padding: 1rem;
  }
}


.testimonial {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
}


/* Right Image Stack */
.image-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 40%;
  padding-top: 0rem;
}

.image-stack img {
  width: 100%;
  max-height: 170px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Services (inline on the left) */
.services-inline {
  margin-top: 0.5rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.services-inline h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #222;
}

.service-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-list li {
  background: #f5f5f5;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  color: #333;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

/* Features Row */
.features {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 1rem;
  padding: 2rem 3vw;
  margin-top: 1rem;
}

.features div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #eee;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-weight: bold;
  color: #333;
  text-align: center;
}

@media (max-width: 480px) {
  .features {
    flex-direction: column;
    align-items: center;
  }

  .features div {
    flex-direction: column;
    min-width: 160px;
    padding: 1rem;
    gap: 0.3rem;
  }
}


/* Footer */
footer {
  padding: 1rem;
  font-size: 0.8rem;
  text-align: center;
  color: #777;
  white-space: pre-wrap;
  word-break: keep-all;
}

/* MODAL FORM */
/* Modal Styles */
.modal {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.modal-content h2 {
  margin-bottom: 1rem;
}

.modal-content label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
  width: 100%;
  padding: 0.7rem;
  margin-top: 0.4rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.modal-content button {
  margin-top: 1.2rem;
  padding: 0.8rem 1.5rem;
  background: #d93700;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.modal-content button:hover {
  background: #ff9400;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #888;
}

.close-button:hover {
  color: #111;
}
