/* Global Reset */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-color: black;
  color: white;
  font-family: "Poppins", "Questrial", sans-serif;
}

html {
  scroll-behavior: smooth;
}

ion-icon {
  font-size: 32px;
}

/* Button Element */
.cta {
  display: inline-block;
  padding: 6px 12px;
  /* background-color: #128000; */
  text-decoration: none;
  border-radius: 4px;
  /* transition: background 0.3s; */
  /* font-weight: bold; */
  /* margin: auto; */
  border: 1px solid white;
  background-color: #0d3904;
  transition: transform 0.3s ease-in-out;
}

.cta:hover {
  transform: scale(1.1);
}

/* generic gradient styling */

.gradient-left {
  position: relative;
  z-index: 1;
}

.gradient-left::before {
  max-width: 1200px;
  margin: 0 auto;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle at top left,
    rgba(0, 128, 0, 0.5),
    transparent 70%
  );
  pointer-events: none;
}

.gradient-middle {
  position: relative;
  z-index: 1;
}

.gradient-middle::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px; /* size of glow */
  height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 0, 0.4), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.gradient-right {
  position: relative;
  z-index: 1;
}

.gradient-right::before {
  max-width: 1200px;
  margin: 0 auto;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle at bottom right,
    rgba(0, 128, 0, 0.5),
    transparent 70%
  );
  pointer-events: none;
}

/* All Headings */
h1 {
  font-family: "Poppins", sans-serif;
}

/* ---------------------------------------- */
/* sticky header */
header {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  margin-top: 60px;
}

.offer {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  z-index: 1000;

  background: linear-gradient(180deg, #062b00, #128000, #062b00);

  /* font-weight: bold; */
  font-size: 26px;
  padding: 10px;
  width: 100%;
  height: 60px;
  align-items: center;
  justify-content: center;
}

.navbar-header {
  position: fixed;
  display: flex;
  gap: 30px; /* space between nav items */
  padding: 20px 20px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.108); /* translucent white */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(12px); /* Safari */
  border-radius: 10px;
  z-index: 1000;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  margin-top: 5px;
  transform: scale(0.8);
}

.nav-links-header {
  background-color: transparent;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.nav-links-header li {
  background-color: transparent;
  margin: 0 15px;
}

.nav-links-header a {
  background-color: transparent;

  text-decoration: none;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  transition: color 0.3s ease;
}

.nav-links-header a:hover {
  color: #128000;
}

.social-links-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  align-items: center;
  justify-content: center;
}

.social-links-header li {
  margin: 0 15px;
}

.social-links-header a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.social-links-header ion-icon {
  font-size: 24px; /* optional: adjust size */
}
.social-links-header ion-icon:hover {
  color: #128000;
}

/* ---------------------------------------- */
/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 40px 10px;
}

.hero-top-container {
  display: flex;
  flex-direction: row;
  gap: 40px;

  align-items: center;
  justify-content: center;
  align-self: center;
}

.hero-section h1 {
  font-size: 36px;
  margin: 10px;
  margin-top: 60px;
}

.hero-section p {
  font-size: 18px;
  margin: 10px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  text-align: justify;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.hero-bottom-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-bottom-container iframe {
  border-radius: 15px; /* rounded corners */
  overflow: hidden; /* ensures content respects rounding */
}

/* Form Container */
form {
  max-width: 600px;
  margin: 40px auto;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6),
    rgba(100, 100, 100, 0.3)
  );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  font-family: "Poppins", sans-serif;
}

/* Form Heading */
form h3 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}

/* Input Fields */
form input {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 20px;
  border: none;
  border-radius: 4px;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.4),
    rgba(255, 255, 255, 0.2)
  );
  color: white;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.1);
}

/* Placeholder styling */
form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* Submit Button */
.submit-form {
  justify-self: center;
  display: block;
  width: 50%;
  background-color: #0d3904; /* dark green */
  color: white;
  font-size: 1rem;

  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
  line-height: 1.4;

  border: 1px solid white;
  transition: transform 0.3s ease-in-out;
}

.submit-form p {
  background-color: transparent;
  padding: 2px;
  font-size: 15px;
  margin: 0;
}

.submit-form:hover {
  /* background-color: #128000; */
  transform: scale(1.1);
}

.submit-form:disabled {
  background-color: #999;
  cursor: not-allowed;
  opacity: 0.6;
}

/* ---------------------------------------- */
/* Testimonials Section */
.testimonials-section {
  text-align: center;
  padding: 2rem;
}

.testimonials-section h1 {
  font-size: 48px;
  margin: 10px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonials-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.testimonials-grid video {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.more-photos {
  display: contents;
}

.more-photos img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s;
  aspect-ratio: 1 / 1;
}

.more-photos video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.more-photos img:hover {
  transform: scale(1.03);
}

.testimonials-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s;
}

.testimonials-grid img:hover {
  transform: scale(1.03);
}

/* Lightbox overlay */
.lightbox {
  display: none; /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox.show {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0 0 15px #000;
}

.close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.more-photos.hidden {
  display: none;
}

button#seeMoreBtn {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  background-color: #0d3904;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  border: 1px solid white;
}

button#seeMoreBtn:hover {
  transform: scale(1.1);
}

/* ---------------------------------------- */
/* Disclaimer Section */
.disclaimer-section {
  padding: 40px 10px;
  padding: 0 350px;
  text-align: center;
}

.disclaimer-section h1 {
  font-size: 48px;
  margin: 10px;
  text-align: center;
}

.disclaimer-section p {
  font-size: 18px;
  margin: 20px;
  text-align: justify;
}

.disclaimer-section h3 {
  font-size: 20px;
  margin: 20px 0;
  margin-left: 20px;
  text-align: center;
}

/* ---------------------------------------- */
/* About Section */
.about-section {
  padding: 60px 5px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: "Poppins", sans-serif;
  background: radial-gradient(circle, #026b00 0%, #000000 100%);
  background-color: transparent;
}

.about-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  background-color: transparent;
}

.about-section h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 40px;
  background-color: transparent;
}

.about-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  background-color: transparent;
}

.about-box-1 {
  line-height: 1.6;
  text-align: justify;
  background-color: transparent;
}

.about-box-1 p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  background-color: transparent;
}

.about-box-2 {
  padding: 24px;
  border: 1px solid white;
  border-radius: 8px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(6px);
  align-self: start;
  background-color: transparent;
}

.about-box-2 h4 {
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 22px;
  background-color: transparent;
}

.about-box-3,
.about-box-4 {
  padding: 12px;
  border: 1px solid white;
  border-radius: 8px;
  background-color: transparent;
}

.about-box-3 h4,
.about-box-4 h4 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  font-weight: 600;
  background-color: transparent;
}

.about-box-3 ul,
.about-box-4 ul {
  list-style-type: disc;
  padding-left: 20px;
  line-height: 3;
  background-color: transparent;
}
.about-box-3 ul li,
.about-box-4 ul li {
  background-color: transparent;
}

/* ---------------------------------------- */
/* Services Section */

.services-section {
  padding: 20px 10px;
  width: 100%;
  margin: auto;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* .services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle at top left,
    rgba(0, 128, 0, 0.5),
    transparent 70%
  );
  pointer-events: none;
} */

.services-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle at bottom right,
    rgba(0, 128, 0, 0.5),
    transparent 70%
  );
  pointer-events: none;
}

.services-section h1 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.services-boxes-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.services-boxes-container > div:last-child {
  grid-column: 1 / -1; /* Span full width */
  justify-self: center;
}

.services-box {
  padding: 12px;
  border: 1px solid white;
  border-radius: 8px;
  backdrop-filter: blur(6px);
}

.services-box ul {
  list-style-type: disc;
  padding-left: 20px;
  line-height: 3;
  font-size: 15px;
  margin-left: 5px;
}

.services-box h3 {
  text-transform: uppercase;
  font-size: 1.4rem;
  margin-bottom: 16px;
  font-weight: 600;
}

/* ---------------------------------------- */
/* Appointment Section */

.appointment-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: radial-gradient(circle, #026b00 0%, #000000 100%);
}
.appointment-div {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  width: 100%;
  background-color: #000; /* solid or semi-transparent black */
  padding: 60px 40px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-align: center;
  color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  margin: 100px;
}

.appointment-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.appointment-section p {
  font-size: 1.125rem;
}

.cta-appointment {
  margin-bottom: 0;
  width: 400px;
  margin: 0 auto;
}

/* ---------------------------------------- */
/* FAQs Section */

/* Accordion Section Container */
/* Container Section */
.faq-section {
  padding: 80px 20px;
  color: white;
  text-align: center;
  background: radial-gradient(circle, #026b00 0%, #000000 100%);
}

.faq-section h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 40px;
  background-color: transparent;
}

.cta-faqs {
  margin-top: 20px;
  width: 200px;
}

/* Accordion Wrapper */
.accordion-wrapper {
  max-width: 960px;
  margin: 0 auto;
  /* background-color: #0a0a0a; */
  border-radius: 20px;
  padding: 40px 20px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
  transition: height 0.7s ease, opacity 0.5s ease 0.2s;
}

/* Accordion Item */
.accordion-item {
  background-color: #0b0b0b;
  border: 1px solid #026b00;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: border 0.3s ease;
}

/* White border when open */
.accordion-item.open {
  border: 1px solid white;
}

/* Header Styling */
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
}

.accordion-header h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  text-align: left;
}

.accordion-header .arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

/* Rotate arrow if open */
.accordion-item.open .arrow {
  transform: rotate(180deg);
}

/* Content area (collapsed by default) */
.accordion-content {
  display: none;
  padding: 0 24px 18px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;

  max-height: 0;
  overflow: hidden;
  opacity: 0;
}

.accordion-content p {
  text-align: left;
}

.accordion-content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
  text-align: left;
}

/* Show content when open */
.accordion-item.open .accordion-content {
  display: block;
  max-height: 300px; /* adjust based on expected content size */
  opacity: 1;
}

/* ---------------------------------------- */
/* Footer */
footer {
  background: linear-gradient(180deg, #062b00, #128000, #062b00);
  padding: 4rem 2rem 1rem 2rem;
  background-color: transparent;
  text-align: center;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
  background-color: transparent;
  grid-auto-flow: row; /* Makes items flow horizontally */
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
}

.footer-logo {
  background-color: transparent;
  transform: translateY(-20%);
}

.footer-nav,
.footer-socials,
.footer-contact {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-self: center;
  align-items: center;

  margin-top: 50px;
  margin-bottom: auto;
}

.footer-nav h4,
.footer-socials h4,
.footer-contact h4 {
  background-color: transparent;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
  min-height: 2rem;
}

.footer-nav a,
.footer-socials a,
.footer-contact a {
  background-color: transparent;
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-socials a:hover,
.footer-contact a:hover {
  background-color: transparent;
  color: #128000; /* or your highlight color */
}

.footer-contact .cta-footer {
  background-color: transparent;
  margin-top: 0.8rem;
  background: black;

  border: 1px solid white;
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.9rem;
  color: white;
  cursor: pointer;
  text-align: center;
  transition: background 0.3s ease;
}

.footer-contact .cta-footer:hover {
  background-color: transparent;
  background: white;
  color: black;
}

.cta-footer {
  border: 1px solid white;
  background-color: #0d3904;
  transition: transform 0.3s ease-in-out;
}

.cta-footer:hover {
  transform: scale(1.1);
}

.footer-bottom {
  background-color: transparent;
  text-align: center;
  margin: 20px;
  font-size: 0.85rem;
  color: #ccc;
}

footer ion-icon {
  background-color: transparent;
}

footer ion-icon:hover {
  color: #128000;
}

/* ************************************************** */
/* Responsive Design */

/* Small devices (phones) */
@media (max-width: 599px) {
  html {
    font-size: 14px;
    line-height: 1;
  }

  /* Sticky Header Section */
  .offer {
    font-size: 22px;
    line-height: 1;
    text-align: center;
  }

  .navbar-header {
    padding: 5px;
    white-space: nowrap;
  }

  .nav-links-header {
    flex-direction: row;
    gap: 5px;
  }

  /* Hero Section */
  .hero-text {
    margin-top: 20px;
    grid-row: 2;
    grid-column: 1/-1;
    text-align: center;
    /* align-items: center; */
  }

  .hero-text h1 {
    font-size: 22px;
    margin: 5px 5px;
    width: 100%;
    /* text-align: justify; */
  }

  .hero-text p {
    font-size: 14px;
    padding: 5px;
    margin: 5px 0;
    width: 100%;
    /* text-align: justify; */
  }
  .logo-header {
    height: 80px;
    width: auto;
  }

  .hero-section {
    gap: 10px;
    padding: 10px 5px;
  }

  .hero-top-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
    justify-items: center;
    gap: 5px;
    padding: 0;
  }

  .hero-bottom-container {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding: 0;
  }

  iframe {
    width: 100%;
    height: 200px;
  }

  #contact-form {
    width: auto;
    height: auto;
    margin: 2px;
  }

  #contact-form h3 {
    margin: 5px;
    padding: 5px;
  }

  #submitBtn p {
    font-size: 10px;
  }

  form input {
    padding: 5px;
    margin: 2px;
  }

  .submit-form {
    padding: 0;
    width: 100%;
    margin: 2px 5px;
  }
  .social-links-header {
    grid-row: 1;
    grid-column: 2;
    gap: 5px;
    display: flex;
    flex-direction: row;
    transform: translateY(100%);
  }

  .social-links-header ion-icon {
    font-size: 16px;
  }

  /* Testimonials Section */
  .testimonials-section {
    padding: 2px;
    margin: 5px;
  }

  .testimonials-section h1 {
    font-size: 32px;
  }

  #seeMoreBtn {
    font-size: 10px;
  }

  .testimonials-grid video {
    height: 100%;
    aspect-ratio: 4 / 3;
  }

  /* Disclaimer section */

  .disclaimer-section {
    padding: 5px;
    margin: 5px 20px;
  }
  .disclaimer-section h1 {
    font-size: 32px;
    padding: 5px;
    margin: 5px;
  }

  .disclaimer-section p {
    margin: 5px 5px 10px 5px;
    font-size: 12px;
    line-height: 1.2;
  }

  .disclaimer-section h3 {
    font-size: 18px;
    padding: 10px;
    margin: 5px;
    display: flex;
    gap: 15px;
    justify-content: center;
  }

  .disclaimer-section h3 a {
    font-size: 12px;
  }

  /* About Section */
  .about-section {
    padding: 5px;
    margin: auto 10px;
  }
  .about-section h1 {
    background-color: transparent;
    font-size: 32px;
    padding: 5px;
    margin: 5px;
  }

  .about-section h3 {
    background-color: transparent;
    font-size: 18px;
    padding: 5px;
    margin: 5px;
  }

  .about-section p {
    font-size: 12px;
    padding: 5px;
    margin: 5px;
  }

  .about-boxes {
    grid-template-columns: 1fr;
    gap: 10px;
    background-color: transparent;
  }

  /* 
  .about-boxes > :first-child {
    grid-column: 1/-1;
  }

  .about-boxes > :nth-child(2) {
    grid-column: 1/-1;
  } 
  
  .about-box-2 {
    align-self: center;
  } */

  .about-box-1 p {
    background-color: transparent;
  }
  .about-box-1 {
    background-color: transparent;
  }

  .about-box-2 {
    padding: 5px;
  }

  .about-box-2 h4 {
    font-size: 18px;
    margin: 10px 0;
  }

  .about-box-2 a {
    font-size: 12px;
    margin: 10px 0;
  }

  .about-box-3,
  .about-box-4 {
    padding: 5px;
  }

  .about-box-3 h4,
  .about-box-3 h4 {
    font-size: 18px;
  }

  .about-box-3 ul li,
  .about-box-4 ul li {
    font-size: 12px;
    padding: 5px;
    line-height: 1.2;
  }

  /* Services Section */
  .services-section {
    padding: 5px;
    margin: 10px;
  }

  .services-section h1 {
    font-size: 32px;
    padding: 5px;
    margin: 5px;
  }

  .services-boxes-container {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .services-box h3 {
    font-size: 18px;
    padding: 5px;
    margin: 5px;
    background-color: transparent;
  }
  .services-box p {
    font-size: 14px;
    padding: 5px;
    margin: 5px;
    background-color: transparent;
  }
  .services-box ul {
    background-color: transparent;
  }
  .services-box ul li {
    background-color: transparent;
    font-size: 12px;
    padding: 5px;
    margin: 5px;
    line-height: 1.2;
  }

  /* Appointment section */

  .appointment-section {
    padding: 10px;
  }

  .appointment-div {
    width: 100%;
    margin: 5px;
    padding: 5px;
    gap: 10px;
  }
  .appointment-div h1 {
    font-size: 24px;
    margin: 5px;
  }

  .appointment-div p {
    font-size: 14px;
    margin: 5px;
  }

  .cta-appointment {
    padding: 5px;
    font-size: 12px;
    width: 50%;
    margin: 5px auto;
  }

  /* FAQ Section */
  .faq-section {
    padding: 5px;
    margin: 10px;
  }

  .faq-section h1 {
    font-size: 24px;
    padding: 5px;
    margin: 5px;
  }

  .accordion-wrapper {
    padding: 5px;
  }
  .accordion-header {
    padding: 12px 10px;
  }
  .accordion-content {
    padding: 15px 10px;
  }
  .accordion-header h3 {
    font-size: 14px;
  }
  .accordion-content p,
  .accordion-content ul li {
    font-size: 12px;
  }

  /* Footer Section */
  footer {
    padding: 10px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
  }

  .footer-logo {
    height: 200px;
    align-self: center;
    transform: translateX(15%);
  }
  .footer-nav {
    padding: 5px;
  }

  .footer-socials {
    padding: 5px;
  }

  .footer-nav,
  .footer-socials,
  .footer-contact {
    margin: 20px auto;
  }
}

.footer-nav h4,
.footer-socials h4,
.footer-contact h4 {
  padding-left: 0;
  margin-left: 0;
  font-size: 20px;
}

@media (min-width: 600px) and (max-width: 1200px) {
  html {
    font-size: 14px;
    line-height: 1.1;
  }

  /* Header Section */

  .offer {
    text-align: center;
  }

  .navbar-header {
    padding: 10px;
  }

  /* Hero Section */

  .logo-header {
    height: 150px;
    width: auto;
  }

  .hero-section {
    padding: 20px 10px;
    gap: 10px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text h1 {
    font-size: 32px;
    /* text-align: justify; */
  }

  .hero-text p {
    margin: 5px;
    /* text-align: justify; */
  }

  .hero-top-container {
    gap: 5px;
    margin: 10px 0;
  }

  .hero-bottom-container {
    width: 100%;
    gap: 10px;
  }

  iframe {
    width: 100%;
    height: 300px;
    border: none;
  }

  form {
    /* transform: scale(0.9); */
    width: 100%;
    height: auto;
    margin: 10px auto;
    padding: 10px;
  }

  form h3 {
    font-size: 20px;
    margin: 10px;
  }

  form input {
    margin: 2px;
    padding: 5px;
  }

  #submitBtn {
    width: 100%;
  }

  /* Testimonials Section */
  .testimonials-section {
    padding: 15px;
  }

  .testimonials-section h1 {
    font-size: 32px;
  }

  .testimonials-grid video {
    width: 100%;
    height: 70%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    object-fit: contain;
    display: block;
  }

  /* Disclaimer Section */
  .disclaimer-section {
    padding: 20px 10px;
  }

  .disclaimer-section h3 {
    text-align: center;
  }

  .disclaimer-section h3 a {
    font-size: 14px;
  }

  /* About Section */
  .about-section {
    padding: 20px;
  }

  .about-box-2 {
    align-self: center;
  }

  .about-box-3,
  .about-box-4 {
    padding: 10px;
  }

  .about-box-3 ul li,
  .about-box-4 ul li {
    line-height: 1.4;
    margin: 5px;
  }

  /* Services Section */

  .services-boxes-container {
    gap: 20px;
  }

  .services-box {
    padding: 8px;
  }

  .services-box h3 {
    margin: 5px;
    font-size: 18px;
  }

  .services-box p {
    padding: 5px;
    font-size: 14px;
  }

  .services-box ul li {
    line-height: 1.6;
    padding: 5px 0;
    font-size: 12px;
    margin: 5px;
  }

  /* Appointment Section */

  .appointment-section {
    padding: 20px;
  }

  .appointment-div {
    margin: 20px 50px;
  }

  .cta-appointment {
    width: 40%;
    padding: 10px;
  }

  /* FAQ Section */

  .faq-section {
    padding: 20px;
  }

  .faq-section h1 {
    margin: 5px;
  }

  .accordion-wrapper {
    padding: 15px;
  }

  .accordion-content ul li {
    margin: 5px;
  }

  /* Footer Section */
  footer {
    padding: 20px;
  }

  .footer-container {
    gap: 20px;
    align-items: center;
    justify-content: center;
  }

  .footer-contact {
    /* grid-column: 1/-1; */
    /* justify-content: flex-start; */
    margin: 0%;
    margin-bottom: 50px;
    grid-column: 1/-1;
  }
  .footer-nav a,
  .footer-socials a {
    padding: 5px;
  }
}
