/* === Global Reset & Layout === */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

/* === Reviews Section Styling === */
.reviews-section {
  background: #f9f9f9;
  text-align: center;
  padding: 30px 20px;
  margin: 40px 0;
  position: relative;
  z-index: 1;
}

.reviews-content h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.reviewSection {
  background: none;
  position: relative;
  z-index: 1;
}

.stars-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.stars fa-icon,
.stars i {
  color: #fbb040;
  font-size: 20px;
  margin: 0 2px;
}

.review-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #258e4f;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.review-link:hover {
  background-color: #1f7a43;
}

.reviewCard {
  background: #fff;
  color: #111;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1rem;
  flex: 1 1 300px;
}

/* Remove Review Section Overlay */
.reviewSection::before {
  display: none !important;
}

/* === Footer Styling === */
.footerGrid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
  background-color: #001f3f;
  padding: 40px 20px;
}

.footerLogo img {
  max-width: 180px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.footerWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  flex: 3 1 700px;
}

.footerCol {
  flex: 1 1 250px;
  min-width: 250px;
  color: white;
}

.footerCol h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #ffffff;
}

.footerCol p,
.footerCol li,
.footerCol a {
  color: #eeeeee;
  font-size: 15px;
  line-height: 1.6;
}

.footerCol a {
  color: #90ee90;
  text-decoration: none;
}

.footerCol a:hover {
  text-decoration: underline;
}

.footerMenu {
  list-style: none;
  padding-left: 0;
}

.footerMenu li {
  margin-bottom: 8px;
}

.footerBottom {
  background-color: #000;
  color: white;
  font-size: 14px;
  padding: 15px 20px;
  text-align: center;
}

.footerLinks a {
  color: #90ee90;
  margin: 0 6px;
  text-decoration: none;
}

.footerLinks a:hover {
  text-decoration: underline;
}

/* === Mobile Responsive Fixes === */
@media (max-width: 768px) {
  .footerGrid,
  .footerWrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 15px;
  }

  .footerLogo,
  .footerCol,
  .footerWrap {
    width: 100% !important;
    max-width: 100%;
    flex: 1 1 100%;
  }

  .footerCol {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footerCol:last-child {
    border-bottom: none;
  }

  .footerCol h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .footerCol p,
  .footerCol a {
    font-size: 1rem;
    line-height: 1.6;
  }

  .footerLinks {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .footerLinks a {
    display: inline-block;
    margin: 4px 6px;
  }

  .footerBottom {
    font-size: 14px;
    text-align: center;
  }
}

/* === Footer Layout Fix === */
.main3ColFooter {
  background-color: #001f3f;
  color: white;
  padding: 40px 20px;
  overflow-x: hidden;
}

.footerGrid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
  box-sizing: border-box;
  width: 100%;
}

.footerLogo {
  flex: 1 1 180px;
}

.footerLogo img {
  max-width: 180px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.footerWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  flex: 3 1 700px;
  width: 100%;
  box-sizing: border-box;
}

.footerCol {
  flex: 1 1 250px;
  min-width: 250px;
  box-sizing: border-box;
  word-wrap: break-word;
}

.footerCol h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}

.footerCol p,
.footerCol a,
.footerCol li {
  color: #eeeeee;
  font-size: 15px;
  line-height: 1.6;
  word-break: break-word;
}

.footerCol a {
  color: #90ee90;
  text-decoration: none;
}

.footerCol a:hover {
  text-decoration: underline;
}

.footerMenu {
  list-style: none;
  padding-left: 0;
}

.footerMenu li {
  margin-bottom: 8px;
}

.footerBottom {
  background-color: #000;
  color: white;
  font-size: 14px;
  padding: 15px 20px;
  text-align: center;
  overflow-x: hidden;
}

.footerBottomWrap {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.footerLinks a {
  color: #90ee90;
  margin: 0 6px;
  text-decoration: none;
}

.footerLinks a:hover {
  text-decoration: underline;
}

/* === Mobile Footer Fix === */
@media (max-width: 768px) {
  .footerGrid,
  .footerWrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .footerLogo,
  .footerWrap,
  .footerCol {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
  }

  .footerCol {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footerCol:last-child {
    border-bottom: none;
  }

  .footerCol h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .footerCol p,
  .footerCol a {
    font-size: 1rem;
    line-height: 1.6;
  }

  .footerLinks {
    flex-direction: column;
    text-align: center;
  }

  .footerLinks a {
    display: inline-block;
    margin: 4px 6px;
  }
}