/* === Global Reset & Box Sizing === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
margin: 0;
font-family: 'Segoe UI', sans-serif;
background-color: #fdfcf8; /* subtle cream */
color: #222;
scroll-behavior: smooth;}
header {
display: flex;
flex-direction: row;
justify-content: center;
background-color: #ffffff; 
color: #004d40;/* deep teal */
padding: 1rem;
}
header p {
line-height: 160px;
}
.sticky {
padding: 2rem;
text-align: center;
background-color: #004d40; 
color: #ffffff;/* deep teal */
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
display: none;}
.hero {
background: #00796b; /* teal */
padding: 4rem 2rem;
text-align: center;
color: white;}
.hero h2 {font-size: 2.5rem;}
.typing {
font-weight: bold;
color: #ffffff;}
.cta-button {
margin-top: 1.5rem;
background: linear-gradient(to right, #00796b, #004d40);
color: white;
padding: 1rem 2rem;
border: none;
border-radius: 30px;
cursor: pointer;
font-size: 1.1rem;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
transition: transform 0.2s ease;}
.cta-button:hover {transform: scale(1.05);}
section.pricing p{
font-style: italic;
font-weight: 700;
}
.features {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 3rem 1rem;
background: #ffffff;}
.feature {
background: #009688; /* vibrant aqua-teal */
color: white;
padding: 2rem;
margin: 1rem;
border-radius: 12px;
width: 280px;
text-align: center;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);}
.testimonial {
background: #009688;
color: white;
padding: 3rem 1rem;
text-align: center;}
.faq-section {
background: #e0f2f1;
padding: 3rem 2rem;}
.faq h3 {
cursor: pointer;
background: #b2dfdb;
color: #212121;
padding: 1rem;
margin: 0;
border-top: 1px solid #ccc;}
.faq p {
display: none;
padding: 1rem;
margin: 0;
background: #ffffff;}
.form-section {
padding: 3rem 2rem;
background-color: #f1f8e9;}
form {
max-width: 500px;
margin: 0 auto;}
input, textarea {
width: 100%;
padding: 1rem;
margin: 0.5rem 0;
font-size: 1rem;
border-radius: 6px;
border: 1px solid #ccc;}
input:focus, textarea:focus {
border-color: #00796b;
outline: none;}
button[type="submit"] {
background: linear-gradient(to right, #00796b, #004d40);
color: white;
padding: 1rem 2rem;
border: none;
font-size: 1rem;
border-radius: 30px;
cursor: pointer;
margin-top: 1rem;
transition: background 0.3s;}
button[type="submit"]:hover {
transform: scale(1.05);}








 */
#quoteForm {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* === Honeypot (hidden) === */
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  visibility: hidden;
}

/* === Form Elements === */
#quoteForm input[type="text"],
#quoteForm input[type="email"],
#quoteForm textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

#quoteForm input[type="text"]::placeholder,
#quoteForm input[type="email"]::placeholder,
#quoteForm textarea::placeholder {
  color: #999;
}

/* === Focus States === */
#quoteForm input:focus,
#quoteForm textarea:focus {
  outline: none;
  border-color: #007BFF;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

/* === Submit Button === */
#quoteForm button[type="submit"] {
  display: inline-block;
  background-color: #007BFF;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

#quoteForm button[type="submit"]:hover {
  background-color: #0056b3;
}

#quoteForm button[type="submit"]:active {
  transform: scale(0.98);
}

footer {
line-height: 70px;
display: flex;
flex-direction: row;
justify-content: center;
text-align: center;
padding: 2rem 1rem;
background: #ffffff;
color: #004d40;
font-weight: bolder;}

/* === Responsive Adjustments === */
@media (max-width: 480px) {
  #quoteForm {
    padding: 1rem;
  }

  #quoteForm button[type="submit"] {
    width: 100%;
    text-align: center;
  }
}

/* Mobile  */
@media (max-width: 768px) {
header p {
font-size: 60%;}}