/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background-color: #f4f4f4;
  color: #003926;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.site-header {
  background-color: transparent;
  padding: 20px 0;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #003926;
}

.nav ul {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  list-style: none;
}

.nav a {
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  font-weight: 500;
}

.nav a.btn {
  background-color: #007f5f;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
}

.nav a.btn:hover {
  background-color: #005f46;
}

/* Hero */
.hero {
  background: url('hero-background.png') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
  position: relative;
}


.hero-line {
  font-size: 3.5rem;
  font-weight: bold;
  color: white;
  margin: 10px 0;
  text-shadow: 1px 1px 4px #00000070;
}

.green {
  color: #00b894;
}

.btn-large {
  margin-top: 20px;
  background-color: #007f5f;
  color: white;
  padding: 15px 30px;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.btn-large:hover {
  background-color: #005f46;
}

/* Pricing */
.pricing {
  background-color: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.pricing .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.plan {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  max-width: 300px;
  flex: 1 1 250px;
  transition: transform 0.3s ease;
}

.plan:hover {
  transform: translateY(-5px);
}

.plan h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #003926;
}

.plan .price {
  font-size: 1.8rem;
  color: #007f5f;
  margin: 10px 0;
}

.plan p {
  font-size: 1rem;
  color: #444;
}

.btn-small {
  display: inline-block;
  background-color: #007f5f;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 15px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-small:hover {
  background-color: #005f46;
}

/* Features */
.features {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.features .container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.feature {
  max-width: 150px;
  text-align: center;
}

.feature img {
  width: 64px;
  height: 64px;
  display: block;
  margin: 0 auto 10px auto;
}

.features p {
  font-size: 1rem;
  font-weight: bold;
  color: white; /* updated to white for visibility on hero background */
}

   Promo Code Section
---------------------------------- */
.promo-code {
  background: url('A_photograph_captures_a_promotional_scene_during_d.png') no-repeat center center/cover;
  padding: 60px 20px;
  text-align: center;
}

.promo-code h2 {
  font-size: 2rem;
  color: #003926;
  margin-bottom: 20px;
}

#promoForm {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

#promoInput {
  padding: 10px;
  width: 250px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

#promoForm button {
  background-color: #007f5f;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Button Hover Enhancement */
#promoForm button:hover,
button:hover {
  background-color: #005d47; /* darker green variant */
  transition: background-color 0.2s ease;
  cursor: pointer;
}

#promoMessage {
  margin-top: 15px;
  font-size: 0.95rem;
  color: #007f5f;
}

/* ----------------------------------
   Promo + ZIP Service Area Layout
---------------------------------- */
.promo-service-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  background-color: #f9f9f9;
  padding: 40px 60px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.promo-block,
.zip-block {
  flex: 1 1 300px;
}

.promo-image {
  flex: 1 1 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.promo-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.promo-service-area input:focus,
.promo-service-area select:focus {
  border-color: #007256;
  box-shadow: 0 0 4px rgba(0, 114, 86, 0.3);
  outline: none;
}

/* ZIP Routing Dropdown */
.zip-lookup {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.zip-lookup h2 {
  font-size: 2rem;
  color: #003926;
  margin-bottom: 10px;
}

.zip-lookup p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
}

#zipForm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

#zipSelect {
  padding: 10px;
  width: 250px;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}

#zipForm button {
  background-color: #007f5f;
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

#zipForm button:hover {
  background-color: #005f46;
}

#zipMessage {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #007f5f;
}

/* Calendly Embed */
.booking {
  background-color: #f7f7f7;
  padding: 80px 20px;
  text-align: center;
}

.booking h2 {
  font-size: 2.5rem;
  color: #003926;
  margin-bottom: 10px;
}

.booking p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 40px;
}

/* Footer */
.site-footer {
  background-color: #003926;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.footer-btn {
  display: inline-block;
  background-color: #007f5f;
  color: white;
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 5px;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-btn:hover {
  background-color: #005f46;
}

.footer-links p {
  margin: 10px 0;
  font-size: 0.95rem;
}

.footer-links a {
  color: #66ccff;
  text-decoration: none;
}

.social-icons {
  margin: 20px 0;
}

.social-icons img {
  margin: 0 10px;
  width: 30px;
  height: 30px;
}

.footer-note {
  font-size: 0.85rem;
  margin-top: 30px;
  color: #ccc;
}
/* FAQ Section */
.faq {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.faq h2 {
  font-size: 2.5rem;
  color: #003926;
  margin-bottom: 40px;
}

.faq-item {
  max-width: 700px;
  margin: 0 auto 20px auto;
  text-align: left;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
}

.faq-question {
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  color: #003926;
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 10px 0;
}

.faq-answer {
  display: none;
  padding: 5px 0 0 0;
  color: #444;
  font-size: 1rem;
}
/* Reviews Section */
.reviews {
  background-color: #f4f4f4;
  padding: 80px 20px;
  text-align: center;
}

.reviews h2 {
  font-size: 2.5rem;
  color: #003926;
  margin-bottom: 40px;
}

.review {
  max-width: 700px;
  margin: 0 auto 30px auto;
  background: #ffffff;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.review-text {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 10px;
  font-style: italic;
}

.review-author {
  font-size: 0.95rem;
  color: #007f5f;
  font-weight: bold;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  padding: 10px 0;
  color: #003926;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.2rem;
}

.faq-question.active::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding-top: 15px;
  margin-top: 5px;
  color: #333;
  line-height: 1.6;
}

/* Pause/Cancel Section */
.pause-cancel {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.pause-cancel h2 {
  font-size: 2.5rem;
  color: #003926;
  margin-bottom: 30px;
}

#pauseCancelForm {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#pauseCancelForm input,
#pauseCancelForm select,
#pauseCancelForm textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

#pauseCancelForm button {
  background-color: #007f5f;
  color: white;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#pauseCancelForm button:hover {
  background-color: #005f46;
}

#pauseCancelMessage {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #007f5f;
}/* About Us Section */
.about {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.about h2 {
  font-size: 2.5rem;
  color: #003926;
  margin-bottom: 30px;
}

.about p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  color: #333;
  line-height: 1.6;
  line-height: 1.6;
}
/* Pricing Image Styling */
.pricing-image-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.pricing-photo {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
/* ZIP Routing Image Layout */
.zip-routing-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.zip-routing-photo {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
/* Testimonials Layout with Image */
.testimonial-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.testimonial-photo {
  max-width: 350px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.testimonial-content {
  flex: 1;
}

.review {
  background: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
/* Pause/Cancel Layout */
.pause-cancel-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center; /* Changed from flex-start to center the image */
  flex-wrap: wrap;
  gap: 40px;
}

.pause-cancel-form {
  flex: 1;
  min-width: 300px;
}

.pause-cancel-photo {
  max-width: 450px;        /* Increased from 350px to 450px */
  width: 100%;
  height: auto;
  border-radius: 12px;     /* Softened corners */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);  /* Deeper shadow */
  align-self: center;      /* Ensures image stays vertically centered */
}
/* FAQ Layout with Side Image */
.faq-layout {
  display: flex;
  justify-content: space-between;
  align-items: center; /* Vertically center content */
  gap: 50px;
  flex-wrap: wrap;
}

.faq-photo {
  max-width: 500px;        /* Scaled up from 400px */
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  align-self: center;      /* Ensures it centers if items wrap */
}

.faq-content {
  flex: 1;
}
/* Footer Image Styling */
.footer-image-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.footer-photo {
  max-width: 280px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
/* About Us Layout */
.about-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-photo {
  max-width: 450px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
}

/* Section Background Colors (Visually Accurate) */
.hero { /* Do not change background here – image based */ }

.pricing { background-color: #f4f4f4; }
.features { background-color: #ffffff; }
.promo-code { background-color: #f9f9f9; }
.zip-lookup { background-color: #f9f9f9; }
.booking { background-color: #ffffff; }
.about { background-color: #fefefe; }
.reviews { background-color: #f6f6f6; }
.pause-cancel { background-color: #ffffff; }
.faq { background-color: #f9f9f9; }
/* Footer remains branded green */
.features {
  background-color: #003926;
  padding: 80px 40px;
}

.features-grid {
  display: flex;
  justify-content: space-around; /* spread out across full width */
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}

.feature-item {
  flex: 1;
  max-width: 300px;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}

.feature-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.feature-label {
  font-weight: bold;
  margin-bottom: 10px;
}

.feature-description 
  background-color: rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.4;
/* Promo Service Area */
.promo-service-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  background-color: #f9f9f9;
  padding: 60px 40px;
  gap: 40px;
  text-align: left;
}

.promo-block,
.zip-block {
  flex: 1 1 300px;
  max-width: 400px;
}

.promo-block h2,
.zip-block h2 {
  margin-bottom: 15px;
  font-size: 1.6rem;
  color: #003926;
}

#promoForm,
#zipForm {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#promoInput,
#zipSelect {
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ccc;
}

#promoForm button,
#zipForm button {
  background-color: #007f5f;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#promoForm button:hover,
#zipForm button:hover {
  background-color: #005d47;
}

.rep-image img {
  max-width: 350px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
