:root {
  --accent: #20a06a;
  --bg: #ffffff;
  --muted: #6b7280;
  --shadow: 0 6px 24px rgba(16, 24, 40, 0.06);
  --radius: 14px;
  --fw-sans: "Helvetica", Arial, sans-serif;
}
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
a {
  transition: all 0.2s linear;
}
html,
body {
  height: 100%;
  margin: 0;
  font-family: var(--fw-sans);
  background: var(--bg);
  color: #111;
}
img {
  max-width: 100%;
  display: block;
}
.vv-about-section {
  padding: 5rem 2rem;
  background: #f7f9f8;
  color: #1c3d2c;
}
.vv-container {
  max-width: 1200px;
  margin: 0 auto;
}
.vv-heading {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #145a32;
}
.vv-text {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
  line-height: 1.7;
  color: #333;
}
.vv-timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  text-align: center;
}
.vv-timeline-item {
  background: #fff;
  border-left: 4px solid #2e8b57;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.vv-timeline-item span {
  font-weight: bold;
  color: #236a43;
  margin-right: 0.5rem;
}
.vv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.vv-value-card,
.vv-team-member {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}
.vv-value-card:hover,
.vv-team-member:hover {
  transform: translateY(-6px);
}
.vv-value-card img,
.vv-team-member img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.8rem;
  margin-bottom: 1rem;
}
.vv-value-card h3,
.vv-team-member h3 {
  color: #145a32;
  margin-bottom: 0.5rem;
}
.vv-value-card p,
.vv-team-member p {
  color: #555;
  font-size: 0.95rem;
}
.vv-vision-banner {
  position: relative;
  margin-top: 2rem;
}
.vv-vision-banner img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1rem;
}
.vv-vision-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 90, 50, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
}
.vv-vision-overlay h3 {
  color: #fff;
  font-size: 1.8rem;
  font-style: italic;
  max-width: 600px;
  text-align: center;
}
.grid-box {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}
.grid-box img {
  object-fit: cover;
  border-radius: 15px;
}
.about-start p {
  max-width: 780px;
  color: var(--muted);
}
.mt-8 {
  margin-top: 8px;
}
.grey-text {
  color: var(--muted);
}
.pt-110 {
  padding-top: 110px;
}
.card a {
  color: #111;
  text-decoration: none;
}
.card a:hover {
  text-decoration: underline;
}
.logo a:hover {
  opacity: 0.6;
}
.container {
  width: min(1180px, 94%);
  margin: 0 auto;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.8)
  );
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 10px;
  align-items: center;
}
.burger {
  order: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.burger button {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.burger .lines {
  width: 22px;
  height: 2px;
  background: #111;
  box-shadow: 0 6px 0 #111, 0 12px 0 #111;
}
.logo {
  order: 1;
  margin-left: auto;
  margin-right: 16px;
}
.logo img {
  height: 44px;
  box-shadow: 0 6px 18px rgba(32, 160, 106, 0.16);
  border-radius: 8px;
}
.nav {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-5px);
  gap: 18px;
  align-items: center;
  transition: all 0.3s linear;
  display: flex;
  gap: 15px;
  padding-left: 20px;
  width: 0;
  height: 0;
}
.nav a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
}
.nav a:hover {
  color: #20a06a;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  padding: 120px 20px 60px;
}
.hero h1 {
  font-size: 32px;
  margin: 0 0 14px;
}
.hero p {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 20px;
}
.hero .media {
  position: relative;
}
.hero .media .hero-img {
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fffb, #ffffff);
  box-shadow: var(--shadow);
  margin: 28px 0;
  gap: 15px;
}
.cta-text div {
  margin-top: 6px;
  color: var(--muted);
}
.cta .cta-buttons {
  display: flex;
  gap: 12px;
  order: 0;
}
.button {
  padding: 12px 20px;
  border-radius: 28px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  min-width: 120px;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-secondary {
  background: #fff;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.button:hover {
  background: #6b7280;
  transform: translateY(-3px);
}
.btn-secondary:hover {
  color: #f8fffb;
  background: #333635;
}
.cta .cta-text {
  max-width: 56%;
  text-align: right;
  color: var(--muted);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  border: 1px solid rgba(16, 24, 40, 0.06);
  padding: 18px;
  border-radius: 12px;
  background: #fff;
}
.card h3 {
  margin: 0 0 8px;
}
.card p {
  margin: 0;
  color: var(--muted);
}
.reviews {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.review {
  flex: 0 0 calc(33% - 12px);
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 12px;
  border: 1px solid rgba(16, 24, 40, 0.04);
}
.review .meta {
  display: flex;
  gap: 12px;
  align-items: center;
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}
.rating {
  font-weight: 700;
  color: var(--accent);
}
.accordion {
  border-radius: 10px;
  overflow: hidden;
}
.question {
  background: #fafafa;
  padding: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  cursor: pointer;
}
.answer {
  padding: 14px;
  display: none;
  background: #fff;
}
.map-strip {
  height: 110px;
  border-radius: 10px;
  overflow: hidden;
  margin: 22px 0;
}
.map-strip iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.footer {
  background: #fbfff9;
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}
.footer .cols {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.footer .col {
  flex: 1;
  min-width: 180px;
  text-align: center;
}
.footer small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  text-align: center;
}
.footer__logo {
  font-weight: bold;
  font-size: 2em;
  margin: 0 auto 20px;
  color: var(--accent);
  display: block;
  width: fit-content;
  text-decoration: none;
}
.footer__logo:hover {
  color: var(--muted);
}
.footer .col strong {
  margin-bottom: 10px;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 1.2;
  display: block;
}
.footer .col a {
  color: #333635;
}
.footer .col a:hover {
  text-decoration: none;
}
.mt-28 {
  margin-top: 28px;
}
.show-banner div {
  max-width: 980px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-strip iframe {
  border: 0;
}
.vv-service-section {
  padding: 5rem 2rem;
  background-color: #f9fafb;
  color: #222;
}
.vv-container {
  max-width: 1200px;
  margin: 0 auto;
}
.vv-heading {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  color: #1c3d2c;
}
.vv-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.vv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.vv-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.vv-card:hover {
  transform: translateY(-6px);
}
.vv-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.vv-card h3 {
  margin: 1rem;
  color: #145a32;
}
.vv-card p {
  margin: 0 1rem 1.5rem;
  color: #555;
}
.vv-highlight {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}
.vv-highlight-content {
  flex: 1;
}
.vv-highlight img {
   border-radius: 1rem;
  width: 50%;
  height: auto;
}
.vv-btn {
  display: inline-block;
  background: #2e8b57;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.3s ease;
}
.vv-btn:hover {
  background: #236a43;
}
.vv-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
}
.vv-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #ddd;
}
.vv-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1.5rem;
}
.vv-adventure-item {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.vv-adventure-item:hover {
  transform: scale(1.03);
}
.vv-adventure-item h3 {
  color: #1b5e20;
  margin-bottom: 0.5rem;
}
#services {
  margin: 50px auto;
}
#services h2 + p {
  color: var(--muted);
}
.kicker {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(32, 160, 106, 0.08);
  color: var(--accent);
  font-weight: 700;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 1366px) {
  :root {
    --radius: 12px;
  }
  .cta {
    flex-direction: column-reverse;
  }
  .cta .cta-text {
    max-width: none;
    text-align: center;
  }
}
@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 110px 20px 40px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews .review {
    flex: 0 0 calc(50% - 12px);
  }
  .cta .cta-text {
    display: none;
  }
  .footer .cols {
    flex-direction: column;
  }
  .header-inner {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }
  .logo {
    margin: 0 auto;
  }
  .nav {
    align-items: center;
    justify-content: center;
    transform: translateY(-5px);
  }
  .is-open {
    transform: translateY(0);
  }
  .burger {
    order: 1;
  }
  main {
    padding-top: 120px;
  }
  .grid-3,
  .grid-box {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 375px) {
  .header-inner {
    padding: 10px 0;
  }
  h1 {
    font-size: 22px;
  }
  body {
    font-size: 16px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .reviews .review {
    flex: 0 0 100%;
  }
  .cta {
    flex-direction: column;
    gap: 12px;
  }
}
.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  width: 100%;
  height: 100%;
}
button:focus,
a:focus {
  outline: 3px solid rgba(32, 160, 106, 0.18);
  outline-offset: 3px;
}
.vv-privacy-section {
  padding: 5rem 2rem;
  background: #f9faf9;
  color: #1c3d2c;
  font-family: "Poppins", sans-serif;
}
.vv-container {
  max-width: 1000px;
  margin: 0 auto;
}
.vv-heading {
  text-align: center;
  font-size: 2.5rem;
  color: #145a32;
  font-weight: 700;
  margin-bottom: 2rem;
}
.vv-text {
  text-align: center;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 3rem;
  line-height: 1.8;
}
.vv-subheading {
  color: #1e5631;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid #2e8b57;
  padding-left: 0.75rem;
}
.vv-privacy-block {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.vv-privacy-block:hover {
  transform: translateY(-5px);
}
.vv-list {
  list-style: disc;
  margin-left: 2rem;
  color: #444;
  line-height: 1.7;
}
.vv-list li {
  margin-bottom: 0.5rem;
}
.vv-center {
  text-align: center;
  color: #555;
  font-size: 0.9rem;
  margin-top: 2rem;
}
.vv-privacy-section a {
  color: #2e8b57;
  text-decoration: none;
}
.vv-privacy-section a:hover {
  text-decoration: underline;
}
