/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #000;
  overflow-x: hidden; /* Prevent horizontal scroll */
  width: 100%;
  position: relative;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 40px;
  background-color: #fff;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo img {
  height: 50px;
  margin-left:20px;
  margin-right: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #00834f;
}

/* Menu Icon */
.menu-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  margin-left: auto;
  z-index: 1000;
}

.menu-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile Menu Active State */
.menu-icon.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-icon.active span:nth-child(2) {
  opacity: 0;
}

.menu-icon.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px 40px;
}

.hero h1 {
  font-size: 2.8rem;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 700;
}

.hero .highlight {
  color: #00834f;
}

.buy-btn {
  margin-top: 30px;
  padding: 14px 30px;
  background-color: #00834f;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.buy-btn:hover {
  background-color: #006c3e;
}



   /* Image Strip Container */
    .image-strip-wrapper {
      overflow: hidden;
      width: 100%;
      margin: 40px 0;
      position: relative;
    }

    /* Image Strip Row - Desktop */
    .image-strip {
      display: flex;
      gap: 20px;
      width: fit-content;
      padding-bottom: 10px;
      position: relative;
    }

    /* Image Style */
    .image-strip img {
      width: 480px;
      height: 230px;
      object-fit: cover;
      border-radius: 35px;
      transition: transform 0.3s ease;
    }

    .image-strip img:hover {
      transform: scale(1.03);
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
      .image-strip-wrapper {
        margin: 25px 0;
      }

      /* Horizontal scrolling for mobile */
      .image-strip {
        display: flex;
        flex-direction: row; /* Keep horizontal layout */
        gap: 15px;
        width: max-content;
        padding: 0 10px;
      }

      .image-strip img {
        width: 280px; /* Slightly narrower for mobile */
        height: 160px;
        border-radius: 18px;
      }

      /* Remove the staggered mobile layout */
      .image-strip img:nth-child(odd),
      .image-strip img:nth-child(even) {
        margin-left: 0;
        margin-right: 0;
        align-self: auto;
      }

      /* Keep only the animation hover effect */
      .image-strip img:hover {
        transform: scale(1.05);
      }
    }

    @media (max-width: 480px) {
      .image-strip img {
        width: 240px;
        height: 140px;
      }
    }



/* Plan Section */
.plan-section {
  display: flex;
  justify-content: center;
  padding: 60px 30px;
  background-color: #f9f9f9;
}

.plan-card {
  background: white;
  border-radius: 30px;
  padding: 100px 200px;
  width: 100%;
  max-width: 100vw; 
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
}

.plan-card h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  text-align: left;
  font-weight: 500;
  line-height: 1.4;
}

.plan-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 80px 100px;
}

.plan-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.plan-item img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.plan-item p {
  font-size: 1rem;
  line-height: 1.4;
  margin: 0;
}

.secondary-line {
  color: #999; /* Light grey text */
  display: inline-block;
  margin-top: 4px;
}

/* Responsive padding adjustment */
@media (max-width: 768px) {
  .plan-card {
    padding: 60px 30px;
  }
}


/* Benefits Section */
.benefits-section {
  padding: 80px 20px;
  background: fff ;
  text-align: center;
  width: 100%;
  overflow: hidden;
}

.benefits-header h4 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 100px;
}

.benefits-header .subheading {
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: #3a3a3a;
  margin-bottom: 10px;
  font-weight: 500;
}

.benefits-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.benefit-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: left;

  /* Real border with subtle color */
  border: 2px solid rgba(0, 0, 0, 0.06);

  /* Background SVG */
  background-image: url('Topographic 3.svg');
  background-repeat: repeat;
  background-size: cover;
}


/* Icon Background Wrapper */
.icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px; /* Rounded square */
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

/* Color Variants */
.icon-wrapper.yellow { background-color: #fde68a; }
.icon-wrapper.green { background-color: #8ccfa3; }
.icon-wrapper.blue { background-color: #b6c0e7; }

.benefit-card img {
  width: 24px;
  height: 24px;
}

.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.90rem;
  color: #555454;
  line-height: 1.5;
}

.benefit-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 18px;
  font-size: 0.9rem;
  border-radius: 8px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  background-color: #00834f; /* Solid green */
  transition: background-color 0.3s ease;
}

.benefit-btn:hover {
  background-color: #166534; /* Slightly darker on hover */
}




/*how it works*/
.how-it-works-section {
  padding: 80px 20px;
  background-color: fff;
}

.how-it-works-header-wrapper {
  display: flex;
  justify-content: flex-end;
  padding-right: 550px; /* move to the right without margin-left */
}

.how-it-works-header {
  width: 500px;
  text-align: left;
}

.how-it-works-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
}

.steps-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.step {
  width: 290px;
  text-align: left;
}

.step img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  margin-bottom: 15px;
}

.step-text {
  font-size: 1rem;
  color: #000;
  line-height: 1.4;
}

.step-text strong {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-right: 8px;
}

.step-1 {
  margin-top: 0;
}

.step-2 {
  margin-top: 140px;
}

.step-3 {
  margin-top: 280px;
}



/*why choose us*/
.why-choose-us-section {
  padding: 100px 20px;
  background-color: fff;
  display: flex;
  justify-content: center;
}

.why-choose-us-container {
  width: 100%;
  max-width: 1000px;
}

.text-wrapper {
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 1rem;
  letter-spacing: 2px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
  text-transform: uppercase;
  text-align: left;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  max-width: 500px;
  letter-spacing: .5px;
  line-height: 1.4;
  text-align: left;
}

.card-columns {
  display: flex;
  gap: 60px;
  justify-content: center; /* centers the two columns */
  flex-wrap: wrap;
}

.card-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 300px;
}

.column-left {
  margin-top: 80px; /* creates staggered layout */
}

.feature-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  background-image: url('Topographic 4.svg');
  background-repeat: no-repeat;
  background-size: cover;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 15px 0 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

.icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon img {
  width: 20px; /* Optional: scale down if needed */
  height: 20px;
  object-fit: contain;
}

/* Placeholder colors for icons */
.icon.green { background-color: #00c16a; }
.icon.red { background-color: #ff5c5c; }
.icon.blue { background-color: #4f8df9; }
.icon.yellow { background-color: #f5c344; }






/*image banner*/
.hero-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.hero-banner {
  position: relative;
  width: 85%;
  height: 500px;
  background-image: url('/uploads/Rectangle 1745.png');
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: flex-start; /* Align content to the left */
  align-items: center; /* Vertically center */
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), transparent);
  padding-left: 60px; /* Add left padding directly to overlay */
  width: 100%;
  height: 100%;
}

.hero-content {
  max-width: 1000px;
  color: #fff;
}

.hero-content h2 {
  font-size: 2.5rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-button {
  display: inline-block;
  background-color: #00834f;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.hero-button:hover {
  background-color: #009c55;
}

/* Responsive */
@media (max-width: 768px) {
  .overlay {
    padding-left: 20px;
  }

  .hero-content h2 {
    font-size: 1.2rem;
  }

  .hero-banner {
    height: 300px;
  }
}



/* Testimonials */
.testimonial-section {
  background-color: #fcf8ed;
  padding: 80px 20px;
  text-align: center;
}

.testimonial-container {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-subtitle {
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: #1b1a1a;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}

.testimonial-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e1e1e;
  line-height: 1.5;
  margin-bottom: 50px;
}

.highlight-green {
  color: #00834f;
}

.highlight-orange {
  color: #ff8a00;
}

.testimonial-slider {
  position: relative;
}

.testimonial-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-content.active {
  opacity: 1;
}

/* Restored original quote icon positioning */
.quote-icon {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 10rem;
  color: #d1d1d1;
  position: absolute;
  top: -80px;
  /* Removed left: 50% and transform: translateX(-50%) */
  z-index: 0;
}

.testimonial-text {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
  color: #1e1e1e;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.testimonial-line {
  border: none;
  border-top: 2px solid #00834f;
  width: 500px;
  margin: 40px auto 10px;
}

.testimonial-author {
  font-size: 1.4rem;
  font-weight: 500;
  color: #4c4b4b;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d1d1d1;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.testimonial-dot.active {
  background-color: #00834f;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-title {
    font-size: 2rem;
  }
  
  .testimonial-text {
    font-size: 1.2rem;
    padding: 0 20px;
  }
  
  .testimonial-line {
    width: 200px;
  }
  
  .quote-icon {
    font-size: 8rem;
    top: -60px;
  }
}

@media (max-width: 480px) {
  .testimonial-title {
    font-size: 1.8rem;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
  }
  
  .testimonial-line {
    width: 150px;
  }
}



/* Container & Title */
/* Section Base */
.visual-gallery-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  width: 100%;
  overflow: hidden;
}

.visual-gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
}

.visual-gallery-heading {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: #1e1e1e;
  text-align: center; 
}

/* Wrapper for Each Strip */
.visual-row-wrapper {
  overflow: hidden;
  width: 100%;
  margin: 40px 0;
  position: relative;
}

/* Image Strip Layout */
.visual-row {
  display: flex;
  gap: 20px;
  width: fit-content;
  padding-bottom: 10px;
  position: relative;
}

/* Offsets for scroll illusion */
.offset-gallery-30 {
  transform: translateX(25px);
}

.offset-gallery-60 {
  transform: translateX(-120px);
}

/* Image Styling */
.visual-row img {
  width: 480px;
  height: 230px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.visual-row img:hover {
  transform: scale(1.03);
}


/* FAQ section */
.faq-section {
  background-color: #f1f1f1;
  padding: 80px 20px;
  text-align: center;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 10px;
  margin-bottom: 30px;
}

.faq-subtext {
  font-size: 1rem;
  color: #4f4f4f;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}

.faq-card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  cursor: pointer;
}

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

.faq-question-container {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.faq-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.faq-question {
  margin: 0;
  color: #1e1e1e;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: start;
  flex-grow: 1;
}

.faq-question-container {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  width: 100%; /* Ensure full width */
}

.faq-chevron-container {
  width: 24px; /* Fixed width */
  height: 24px; /* Fixed height */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* Prevent shrinking */
}

.faq-chevron {
  width: 20px; /* Fixed icon size */
  height: 20px; /* Fixed icon size */
  transition: transform 0.3s ease;
  color: #00834f;
  flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .faq-chevron-container {
    width: 22px;
    height: 22px;
  }
  
  .faq-chevron {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 576px) {
  .faq-chevron-container {
    width: 20px;
    height: 20px;
  }
  
  .faq-chevron {
    width: 16px;
    height: 16px;
  }
}
.faq-answer {
  color: #717070;
  padding: 10px;
  font-size: 1rem;
  line-height: 1.5;
  display: none;
  text-align: left;
  margin-top: 8px;
}

.faq-load-btn {
  display: block;
  margin: 40px auto 0 auto;
  background-color: #00834f;
  color: white;
  padding: 20px 100px;
  font-size: 0.80rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.faq-load-btn:hover {
  background-color: #009c55;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .faq-answer {
    padding-left: 0;
  }
  
  .faq-question-container {
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-card {
    padding: 20px;
  }
  
  .faq-question {
    font-size: 0.9rem;
  }
  
  .faq-answer {
    font-size: 0.8rem;
  }
}




/* Outer wrapper to control padding around the section */
.contact-wrapper {
  padding: 60px 60px;
}

/* Contact Map Section */
.contact-map-section {
  background: url('map.png') no-repeat center center/cover;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 500px;
  overflow: hidden;
  padding: 60px 40px;
}

.form-container {
  background-color: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 10px;
}

.form-subtext {
  font-size: 0.95rem;
  color: #4f4f4f;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  background-color: #f3f3f3;
  font-size: 0.95rem;
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='%234f4f4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
}

.contact-form textarea {
  resize: none;
}

.contact-form button {
  width: 100%;
  background-color: #00834f;
  color: white;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

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


/* footer */
.site-footer {
  margin-top: 20px;
  background-color: #00834f;
  color: white;
  padding: 60px 20px 30px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.newsletter-box {
  border: 1px solid white;
  border-radius: 16px;
  padding: 30px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 50px;
  text-align: left;
  gap: 20px;
}

.newsletter-text h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.newsletter-text p {
  font-size: 0.95rem;
  color: #f0f0f0;
  max-width: 400px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid white;
  outline: none;
  font-size: 0.95rem;
  min-width: 250px;
  background: transparent;
  color: white;
}

.newsletter-form input::placeholder {
  color: #f0f0f0;
}

.newsletter-form button {
  padding: 12px 20px;
  border-radius: 8px;
  background: white;
  color: #00834f;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #e6e6e6;
}

/* Logo */
.footer-logo {
  margin-top: 30px;
  margin-bottom: 30px;
}

.footer-logo img {
  height: 80px;
}

/* Nav Links */
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: white;
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
}

.footer-nav a:hover {
  text-decoration: underline;
}

/* Divider */
.footer-divider {
  border: none;
  border-top: 1px solid white;
  max-width: 90%;
  margin: 30px auto;
}

/* Footer Bottom */
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.85rem;
  padding: 0 20px;
}

.footer-left {
  text-align: left;
  justify-self: start;
  color: #f0f0f0;
}

.footer-left a {
  color: #f0f0f0;
  text-decoration: none;
}

.footer-left a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 20px;
  justify-self: center;
}

.footer-social img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.footer-right {
  text-align: right;
  justify-self: end;
  color: #f0f0f0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .contact-wrapper {
    padding: 30px 30px;
  }
  .plan-card {
    padding: 60px 40px;
  }

  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .how-it-works-header-wrapper {
    padding-right: 40px;
  }

  .card-columns {
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .contact-wrapper {
    padding: 15px 15px;
  }
  .hero h1 {
    font-size: 2.4rem;
  }

  .plan-card h2 {
    font-size: 1.8rem;
  }

  .benefits-header h4 {
    font-size: 1.8rem;
  }

  .benefits-header h2 {
    font-size: 1.6rem;
  }

  .how-it-works-header-wrapper {
    padding-right: 20px;
  }

  .how-it-works-header {
    width: 100%;
    max-width: 500px;
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .step {
    width: 100%;
    max-width: 300px;
  }

  .step-2, .step-3 {
    margin-top: 0;
  }

  .card-column {
    width: 100%;
    max-width: 400px;
  }

  .column-left {
    margin-top: 0;
  }

  .visual-row img {
    width: 360px;
    height: 180px;
  }
}

@media (max-width: 768px) {
  .contact-wrapper {
    padding: 20px 20px;
  }
  .navbar {
    padding: 15px 20px;
  }

  .logo img {
    height: 40px;
    margin-left: 10px;
    margin-right: 20px;
  }

  .menu-icon {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 40px 40px;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    margin: 15px 0;
  }

  .nav-links li a {
    font-size: 1.1rem;
    display: block;
    padding: 10px 0;
  }

  /* Add overlay when menu is open */
  .nav-links::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: -1;
  }

  .nav-links.active::before {
    opacity: 1;
    visibility: visible;
  }

  .hero {
    padding: 60px 20px 30px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .image-strip img {
    width: 300px;
    height: 160px;
  }

  .plan-card {
    padding: 40px 20px;
  }

  .plan-items {
    grid-template-columns: 1fr;
  }

  .benefits-section {
    padding: 60px 20px;
  }

  .benefits-header h4 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .benefits-header h2 {
    font-size: 1.4rem;
  }

  .benefit-card {
    padding: 20px;
  }

  .how-it-works-section {
    padding: 60px 20px;
  }

  .how-it-works-header-wrapper {
    padding-right: 0;
  }

  .how-it-works-header h2 {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .hero-banner {
    width: 95%;
    height: 400px;
  }

  .overlay {
    padding-left: 30px;
  }

  .hero-content h2 {
    font-size: 1.4rem;
  }

  .testimonial-title {
    font-size: 1.6rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-section {
    flex-direction: column;
    padding: 30px 15px;
  }

  .form-container {
    padding: 25px 20px;
    max-width: 100%;
  }

  .form-title {
    font-size: 1.4rem;
  }

  .form-subtext {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 10px 12px;
    font-size: 16px;
    margin-bottom: 12px;
  }

  .newsletter-box {
    padding: 20px;
    margin: 0 15px 40px;
  }

  .newsletter-text {
    text-align: center;
    margin-bottom: 20px;
  }

  .newsletter-text h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
  }

  .newsletter-text p {
    font-size: 0.9rem;
  }

  .newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .newsletter-form input {
    width: 100%;
    max-width: 300px;
    padding: 10px 12px;
    font-size: 16px;
  }

  .newsletter-form button {
    width: 100%;
    max-width: 300px;
    padding: 10px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .footer-left, .footer-right {
    text-align: center;
    justify-self: center;
  }
}

@media (max-width: 480px) {
  .contact-wrapper {
    padding: 10px 10px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }

  .buy-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .image-strip img {
    width: 260px;
    height: 140px;
  }

  .plan-card h2 {
    font-size: 1.6rem;
  }

  .benefits-header h4 {
    font-size: 1.4rem;
  }

  .benefits-header h2 {
    font-size: 1.2rem;
  }

  .icon-wrapper {
    width: 40px;
    height: 40px;
  }

  .benefit-card h3 {
    font-size: 1rem;
  }

  .hero-banner {
    height: 300px;
  }

  .overlay {
    padding-left: 20px;
  }

  .hero-content h2 {
    font-size: 1.2rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    min-width: 100%;
  }

  .footer-nav {
    gap: 20px;
  }
}

/* Fix for image strips on mobile */
@media (max-width: 768px) {
  .image-strip-wrapper, .visual-row-wrapper {
    margin: 20px 0;
  }

  .image-strip, .visual-row {
    gap: 10px;
  }

  .offset-30, .offset-60,
  .offset-gallery-30, .offset-gallery-60 {
    transform: none;
  }
}

/* Fix for benefits grid on smaller screens */
@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* Fix for contact form on mobile */
@media (max-width: 480px) {
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

.pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0;
  position: relative;
}

.price-tag {
  background: linear-gradient(135deg, #ff6b35, #ff8f65);
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.price-tag::before {
  content: "Special Offer";
  display: block;
}

.price-tag::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid #ff6b35;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.original-price {
  color: #999;
  text-decoration: line-through;
  font-size: 16px;
  font-weight: 500;
}

.discounted-price {
  color: #2d5016;
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.discounted-price::before {
  content: "$";
  position: absolute;
  left: -2px;
  color: #2d5016;
  -webkit-text-fill-color: #2d5016;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pricing {
    gap: 6px;
    margin: 12px 0;
  }
  
  .price-tag {
    font-size: 10px;
    padding: 3px 6px;
  }
  
  .original-price {
    font-size: 14px;
  }
  
  .discounted-price {
    font-size: 20px;
  }
}

/* Animation for price highlight */
.pricing:hover .discounted-price {
  animation: priceGlow 0.5s ease-in-out;
}

@keyframes priceGlow {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}