body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  color: #1e2022;
}
header, footer {
  background: #1e90ff;
  color: white;
  padding: 1em;
  text-align: center;
}
header img {
  max-height: 200px;
  vertical-align: middle;
  margin-right: 10px;
}
nav {
  background: #1e2022;
  color: white;
  padding: 1em;
  text-align: center;
}
nav a {
  color: white;
  margin: 0 1em;
  text-decoration: none;
}
.container {
  padding: 2em;
  max-width: 1000px;
  margin: auto;
  background: white;
  margin-top: 1em;
}
h2 {
  color: #1e90ff;
}
h1 {
  color: #1e2022;
  font-weight: bold;
}
.services ul, .faq ul {
  list-style-type: none;
  padding-left: 0;
}
.services li, .faq li {
  margin: 0.5em 0;
  font-size: 20px;
  font-weight: bolder;
}
.gallery img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1em;
}
.testimonial {
  border-left: 4px solid #1e90ff;
  margin: 1em 0;
  padding-left: 1em;
  font-style: italic;
}
.success-message {
  color: green;
  margin-top: 1em;
  font-weight: bold;
}
form label, form input, form textarea, form button, .book-btn {
  display: block;
  width: 100%;
  margin: 0.5em 0;
}
form input, form textarea {
  padding: 0.5em;
  border: 1px solid #ccc;
  border-radius: 4px;
}
form button, .book-btn {
  background-color: #1e90ff;
  color: white;
  border: none;
  padding: 0.75em;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  margin-top: 1em;
  transition: background 0.2s;
  box-sizing: border-box;
}
form button:hover, .book-btn:hover,
form button:focus, .book-btn:focus {
  background-color: #187bcd;
  color: #fff;
  text-decoration: none;
}
input[type="file"] {
  margin: 0.5em 0 1em 0;
  padding: 0.5em 0;
  background: #f5faff;
  border-radius: 4px;
  border: 1px solid #ccc;
}

/* Hero section */
.hero {
  position: relative;
  color: #fff;
  padding: 4em 1em 3em 1em;
  text-align: center;
  margin-bottom: 2em;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 4px 24px rgba(30,144,255,0.10);
  overflow: hidden;
  background: none; /* Remove old background */
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../jpg/lakes.jpg') center/cover no-repeat;
  opacity: 0.1; /* Adjust for desired visibility */
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30,144,255,0.3); /* Optional: blue overlay for readability */
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
}
.hero-content h2 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}
.hero-content p {
  font-size: 1.3em;
  margin-bottom: 1.5em;
}
.cta-btn {
  background: #fff;
  color: #1e90ff;
  padding: 0.8em 2em;
  border-radius: 30px;
  font-size: 1.2em;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(30,144,255,0.10);
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.cta-btn:hover {
  background: #1e90ff;
  color: #fff;
}

/* Services section */
.services-highlight .service-cards {
  display: flex;
  gap: 2em;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5em;
}
.service-card,
.service-card-link {
  background: #f5faff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(30,144,255,0.08);
  padding: 1em;
  width: 220px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  color: #1e2022;
  text-decoration: none;
  display: block;
  cursor: pointer;
}
.service-card-link:visited,
.service-card-link:active,
.service-card-link:focus,
.service-card-link:hover {
  color: #1e2022;
  text-decoration: none;
  outline: none;
  box-shadow: 0 4px 16px rgba(30,144,255,0.15);
  transform: translateY(-8px) scale(1.03);
}
.service-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 0.7em;
  height: 120px;
  object-fit: cover;
}
.service-card-link,
.service-card-link * {
  color: #1e2022 !important;
}

.services-flex {
  display: flex;
  gap: 2em;
  align-items: flex-start;
  flex-wrap: wrap;
}

.services-flex ul {
  flex: 2 1 300px;
  margin: 0;
  padding: 0 1em 0 0;
  list-style: disc inside;
}

.services-images {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.services-images img {
  width: 100%;
  max-width: 220px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(30,144,255,0.10);
}

/* Services Section Enhancements */
#services.container {
  background: linear-gradient(120deg, #f5faff 60%, #e3f0ff 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(30,144,255,0.08);
  padding: 2.5em 2em;
  margin-top: 2em;
  margin-bottom: 2em;
  border: 1px solid #e0eaff;
}

#services h2 {
  font-size: 2.2em;
  margin-bottom: 0.7em;
  letter-spacing: 1px;
  color: #187bcd;
  text-align: left;
}

.services-flex ul {
  padding: 0 1.5em 0 0;
  margin: 0;
  list-style: none; /* Remove default bullets */
}

.services-flex li {
  position: relative;
  padding-left: 2em;
  margin-bottom: 0.7em;
  font-size: 1.22em;      /* Bigger text */
  font-weight: 700;       /* Bolder text */
  color: #1e2022;
  line-height: 1.6;
  background: none;
}

.services-flex li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1e90ff;
  font-size: 1.1em;
  top: 0.1em;
  font-weight: 900;
}

.services-images {
  align-items: flex-start;
}

.services-images img {
  width: 100%;
  max-width: 240px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(30,144,255,0.13);
  transition: transform 0.25s, box-shadow 0.25s;
  border: 2px solid #e0eaff;
  background: #fff;
}

.services-images img:hover {
  transform: scale(1.045) rotate(-2deg);
  box-shadow: 0 8px 32px rgba(30,144,255,0.18);
  border-color: #1e90ff;
}

@media (max-width: 900px) {
  .services-highlight .service-cards {
    flex-direction: column;
    gap: 1.2em;
    align-items: center;
  }
  .service-card,
  .service-card-link {
    width: 95%;
    max-width: 350px;
    margin: 0 auto;
  }
  .gallery-row {
    flex-direction: column;
    gap: 1em;
    align-items: center;
  }
  .gallery-row img {
    width: 100%;
    max-width: 350px;
  }
  nav {
    font-size: 1.1em;
    padding: 0.7em 0.2em;
  }
  .container {
    padding: 1em 0.5em;
  }
  .hero {
    padding: 2em 0.5em 2em 0.5em;
  }
  .hero-content h2 {
    font-size: 1.5em;
  }
  .hero-content p {
    font-size: 1em;
  }
}

@media (max-width: 600px) {
  header h1 {
    font-size: 1.3em;
  }
  nav {
    font-size: 1em;
    padding: 0.5em 0.1em;
  }
  .service-card,
  .service-card-link {
    font-size: 1em;
    padding: 0.7em;
  }
  .container {
    padding: 0.5em 0.2em;
  }
  .hero-content h2 {
    font-size: 1.1em;
  }
  .cta-btn {
    font-size: 1em;
    padding: 0.6em 1.2em;
  }
}

/* Gallery section */
.gallery-row {
  display: flex;
  gap: 1.5em;
  justify-content: center;
  margin-top: 1em;
}
.gallery-row img {
  width: 260px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(30,144,255,0.10);
}

/* Testimonials */
.testimonials .testimonial {
  border-left: 4px solid #1e90ff;
  margin: 1em 0;
  padding-left: 1em;
  font-style: italic;
  background: #f5faff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(30,144,255,0.06);
}

.gallery-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  position: relative;
  margin: 1.2em 0;
}

.gallery-track {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 340px;
  max-width: 90vw;
  overflow: visible;
  position: relative;
  height: 160px;
}

.gallery-track img {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 140px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(30,144,255,0.10);
  opacity: 0.5;
  filter: blur(1px) grayscale(40%);
  transition:
    transform 0.5s cubic-bezier(.4,2,.6,1),
    opacity 0.5s cubic-bezier(.4,2,.6,1),
    filter 0.5s cubic-bezier(.4,2,.6,1);
  z-index: 1;
  pointer-events: none;
}

.gallery-track img.left {
  transform: translate(-90%, 0) scale(0.95);
  z-index: 2;
  opacity: 0.7;
  filter: blur(0.5px) grayscale(20%);
}

.gallery-track img.right {
  transform: translate(-10%, 0) scale(0.95);
  z-index: 2;
  opacity: 0.7;
  filter: blur(0.5px) grayscale(20%);
}

.gallery-track img.active {
  width: 220px;
  height: 140px;
  opacity: 1;
  filter: none;
  z-index: 3;
  transform: translate(-50%, 0) scale(1.1);
  pointer-events: auto;
}

.gallery-prev,
.gallery-next {
  background: linear-gradient(135deg, #1e90ff 60%, #187bcd 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.4em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(30,144,255,0.13);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  outline: none;
  border: 2px solid #fff;
}

.gallery-prev:hover,
.gallery-next:hover {
  background: linear-gradient(135deg, #187bcd 60%, #1e90ff 100%);
  transform: scale(1.12);
  box-shadow: 0 4px 16px rgba(30,144,255,0.18);
}

header, .header-flex {
  background: none !important;
  box-shadow: none !important;
}