/* Responsive & Flex‑enhanced style.css */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  color: #333;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  background: #1c3d36;
  padding: 0.5rem 0;
  color: #fff;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.logo img {
  height: 140px;
  margin-right: 10px;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

html {
  scroll-behavior: smooth;
}

.highlight {
  color: rgb(87, 221, 109);
}

.hero {
  background: url('images/hero-bg.png') center/cover no-repeat;
  color: white;
  padding: 150px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: left;
}

.hero h3 {
  font-size: 1rem;
  text-align: left;
  color: #fff;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.services-section {
  padding-bottom: 60px;
  background: #fff;
  text-align: center;
}

.services-section h1 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}

.services-flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
  justify-items: center;
}

.service-item {
  width: 200px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease-in-out;
}

.services-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  min-width: 340px;
}

.services-visual img {
  width: 100%;
  max-width: 370px;
  border-radius: 28px;
  object-fit: cover;
  margin-bottom: 1.2rem;
}

.service-item::before {
  content: '✔';
  color: #1c3d36;
  font-size: 1.1rem;
}

.service-item:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.service-item.full-width {
  grid-column: 1 / -1;
}

.btn-primary {
  background: #1c3d36;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.reviews-section {
  background: #f7f7f7;
  padding: 60px 0;
  text-align: center;
}

.reviews-section h2 {
  font-size: 2.1rem;
  margin-bottom: 2rem;
  font-weight: 800;
  color: #1c3d36;
}

.reviews-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 0.5rem;
}

.reviews-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 2rem;
  max-width: 1050px;
  padding-bottom: 10px;
}

.review-card {
  min-width: 270px;
  flex: 0 0 270px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border-left: 4px solid #26b8f6;
}

.arrow {
  color: #26b8f6;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.13);
}

.arrow:hover {
  transform: scale(1.05);
}

.checklist-card-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.checklist-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.09);
  padding: 0 0 2rem 0;
  max-width: 320px;
  min-width: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.checklist-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
}

.checklist-header {
  width: 100%;
  background: #26b8f6;
  color: #fff;
  font-size: 1.35rem;
  font-weight: bold;
  padding: 0.9rem 0;
  text-align: center;
  margin-bottom: 1.2rem;
  border-radius: 0 0 0 0;
}

.checklist-card ul {
  list-style: none;
  padding: 0 1.8rem;
  width: 100%;
  margin-bottom: 0.7rem;
}

.checklist-card li {
  font-size: 1.04rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.check-icon {
  color: #222;
  font-size: 1.3rem;
}

.emoji {
  font-size: 1.2rem;
}

.addons-title {
  font-weight: bold;
  margin: 0.7rem 0 0.2rem 4.2rem;
  width: 100%;
}

.addons-list {
  list-style: disc;
  margin-left: 0.2rem;
  margin-bottom: 0.4rem;
  color: #222;
  font-size: 1rem;
}

.faq-section {
  padding: 60px 0 80px 0;
  background: #fff;
  text-align: center;
}

.faq-section h2 {
  font-size: 2.1rem;
  color: #1c3d36;
  margin-bottom: 2.3rem;
  font-weight: 800;
}

.faq-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(38, 184, 246, 0.07);
  background: #f7f7f7;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.5rem;
  font-size: 1.14rem;
  font-weight: 700;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  color: #222;
  position: relative;
  outline: none;
  transition: background 0.18s;
}

.faq-question::after {
  content: '\25BC';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.05rem;
  transition: transform 0.25s;
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  background: #fff;
  color: #1c3d36;
  font-size: 1.07rem;
  line-height: 1.7;
  transition:
    max-height 0.32s cubic-bezier(0.5, -0.01, 0, 1.01),
    opacity 0.18s;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding-bottom: 1.2rem;
  transition:
    max-height 0.32s cubic-bezier(0.5, -0.01, 0, 1.01),
    opacity 0.23s;
}

.contact-section {
  background: #ffffff;
  padding: 10px;
  padding-bottom: 60px;
  text-align: center;
}

.contact-section h1 {
  font-size: 2.1rem;
  color: #1c3d36;
  margin-bottom: 2rem;
  font-weight: 800;
}

.contact-card {
  display: inline-block;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(38, 184, 246, 0.1);
  padding: 1rem 3rem;
  min-width: 300px;
}

.contact-card p {
  font-size: 1.18rem;
  color: #222;
  margin: 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: #26b8f6;
}

.intro {
  padding: 60px 0;
  background: #1c3d36;
}

.intro p {
  font-size: 1rem;
  color: #fff;
}

.site-footer {
  background: #1c3d36;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}

/* -------------------------------------------------- */
/* 📱 MOBILE & SMALL TABLET BREAKPOINTS  (≤ 900px)    */
/* -------------------------------------------------- */
@media (max-width: 900px) {
  /* Header nav stacks */
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1rem;
  }

  .site-nav ul {
    flex-direction: row;
    gap: 10px;
    width: 100%;
    padding: 0.75rem 0;
  }

  /* Hero */
  .hero {
    padding: 100px 0 80px;
    text-align: left;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  /* Services */
  .services-flex {
    flex-direction: column;
    align-items: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    width: 600%;
    max-width: 320px;
  }

  .services-visual {
    min-width: 100%;
  }

  /* Reviews carousel */
  .review-card {
    min-width: 220px;
    flex: 0 0 220px;
  }

  /* FAQ font */
  .faq-question {
    font-size: 1.05rem;
  }

  .faq-answer {
    font-size: 1rem;
  }
}

/* -------------------------------------------------- */
/* 📱 EXTRA‑SMALL DEVICES (≤ 500px)                    */
/* -------------------------------------------------- */
@media (max-width: 500px) {
  .logo img {
    height: 90px;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .services-section h1,
  .reviews-section h2,
  .faq-section h2,
  .contact-section h1 {
    font-size: 1.6rem;
  }

  .service-item {
    padding: 0.9rem 1.2rem;
  }

  .btn-primary {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }

  .review-card {
    min-width: 200px;
    flex: 0 0 200px;
  }

  .checklist-img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .site-nav ul {
    display: none;
  }
}

