<style>
  /* Reset & basic styles */
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: sans-serif; color: #5F4B25; }
  header {
    position: sticky; top: 0; z-index: 50;
    background-color: #fff; border-bottom: 1px solid #E5E7EB;
    padding: 16px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  }
  nav.desktop {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  #menu-toggle {
    display: none;
    background: none; border: none; cursor: pointer;
  }
  #mobile-menu {
    display: none;
    flex-direction: column;
    padding: 16px;
    border-top: 1px solid #464E58;
  }
  #mobile-menu.show {
    display: flex;
  }
  @media(max-width: 768px){
    /* Hide desktop nav on small screens */
    nav.desktop { display: none; }
    /* Show hamburger on small screens */
    #menu-toggle { display: flex; }
  }
@media (min-width: 600px) {
     .testimonials,
     .cards-container {
      grid-template-columns: repeat(2, 1fr); 
    }
}
  @media (max-width: 600px) {
   .testimonials,
   .cards-container {
    grid-template-columns: repeat(1, 1fr); 
     }
}
body {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE10+ */
    user-select: none;         /* Standard */
  }
  img {
    -webkit-user-drag: none;
    pointer-events: none; /* stops dragging/saving image */
  }
  h1, h2, h3, h4, h5 {
    text-align: center;
    font-size: 1.5em;
    margin-top: 2em; 
    margin-bottom: 2em;
    color: #2c3e50;
}
.booking-container {
    max-width: 75%;        /* form fills 3/4 of page on desktop */
    margin: 2em auto;      /* center the container + space top/bottom */
    padding: 2em;
    text-align: center;    /* center all text inside */
    background: #f8f9fa;   /* optional: light background */
    border-radius: 12px;   /* optional: rounded corners */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* optional: soft shadow */
}
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: sans-serif; color: #5F4B25; }
  .booking-container { max-width: 75%; margin: 2em auto; padding: 2em; text-align: center; background: #f8f9fa; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
  #bookingForm { max-width: 500px; margin: 30px auto; padding: 25px; background: #F4F3EF; border-radius: 8px; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; }
  #bookingForm input, #bookingForm select, #bookingForm textarea { width: 100%; padding: 12px 15px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 4px; font-size: 1em; box-sizing: border-box; }
  #bookingForm button { padding: 12px 24px; background: #2c3e50; color: #fff; border: none; border-radius: 4px; cursor: pointer; }
  #handy-chat-btn{ position:fixed; bottom:20px; right:20px; background:#11552F; color:#fff; width:60px; height:60px; border-radius:50%; border:none; cursor:pointer; z-index:9999; font-size:28px; box-shadow:0 4px 12px rgba(0,0,0,0.3); }
  #handy-chat-box{ display:none; position:fixed; bottom:90px; right:20px; width:340px; max-width:90vw; background:#fff; border-radius:12px; box-shadow:0 8px 24px rgba(0,0,0,0.25); z-index:9999; overflow:hidden; font-family:Arial, sans-serif; }
  #handy-chat-header{ background:#11552F; color:#fff; padding:14px; display:flex; justify-content:space-between; align-items:center; font-weight:bold; }
  #handy-chat-body{ padding:14px; }
  #handy-chat-form input, #handy-chat-form textarea{ width:100%; padding:10px; margin:5px 0; border:1px solid #ddd; border-radius:6px; box-sizing:border-box; font-size:14px; }
  #handy-cBtn{ width:100%; padding:12px; background:#11552F; color:#fff; border:none; border-radius:6px; font-weight:bold; cursor:pointer; margin-top:8px; }
  #handy-c_status, #b_status{ text-align:center; font-size:13px; min-height:18px; margin-top:8px; }
  #handy-chat-success{ display:none; text-align:center; padding:20px 0; }
  @media(max-width:768px){ .booking-container{ max-width:95%; padding:1em; } }
 .cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 800px; 
  margin: 0 auto 20px;
  padding: 0 16px;
}

.card {
  max-width: 800px; 
  width: 100%;
  margin: 0 auto;
  background: #F4F3EF;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
   flex-direction: column;
   position: relative;
}
  .card-image {
    position: relative;
  }
  .card-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
  .price-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #184C72;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1em;
  }
  .badge-free-quote {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #724B08;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9em;
    letter-spacing: 0.5px;
  }
  .card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .card-title {
    margin: 0 0 10px;
    font-size: 1.17em;
    color: #34495e;
  }
  .description {
    position: relative;
  }
  .desc-text {
    max-height: 100px;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .desc-text.expanded {
    max-height: 1000px;
  }
  .read-more {
    color: #2c3e50;
    cursor: pointer;
    font-weight: 600;
    margin-top: 8px;
    display: inline-block;
  }
  ul {
    margin-top: 15px;
    padding-left: 20px;
  }
  ul li {
    margin-bottom: 8px;
  }
  .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 20px 20px;
  }
  .buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .book-btn {
    background-color: #2980b9;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
  }
  .book-btn:hover {
    background-color: #1f6391;
  }
  /* Additional style for 'Get a Quote' button */
  .quote-btn {
    display: flex;
    align-items: center;
    background-color: #11552F;
    color: #fff;
    padding: 10px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
  }
  .quote-btn i {
    margin-right: 8px;
  }
.rating-summary {
    text-align: center;
    margin-bottom: 30px;
  }

  .aggregate-rating {
    font-size: 3em;
    font-weight: 700;
    color: #135D34;
  }

  .rating-info {
    font-size: 1.2em;
    margin-top: 8px;
    color: #555;
  }

  .stars {
    margin-top: 10px;
  }

  .stars span {
    color: #6B5600;
    font-size: 1.8em;
    margin: 0 2px;
  }

   .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    row-gap: 30px;
    column-gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
    justify-content: center; /* centers the whole grid block */
    justify-items: center; /* centers each card inside its grid cell */
  }
  
  .testimonial-card {
    background: #F4F3EF;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0;
    width: 100%; 
    max-width: 400px; /* prevents cards from stretching too wide on big screens */
  }

  .rating-stars {
    margin-bottom: 10px;
  }

  .rating-stars span {
    color: #6B5600;
    font-size: 1.5em;
  }

   .reviews {
    margin-top: 40px;
    text-align: center;
  }
  .reviews {
  background: #0b1e3d;
  color: #ffffff;       
  text-align: center;
  padding: 2em 1.5em;
  border-radius: 12px;
  max-width: 75%;
  margin: 2em auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.reviews .rating {
  font-size: 1.5rem;     
  font-weight: 700;
  color: #FFD700;        
  letter-spacing: 4px;   
  margin: 0.3em 0;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4); 
}
  .recommended {
    display: inline-block;
    background-color: #11552F;
    color: #fff;
    font-size: 0.75em;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .testimonial-quote {
    font-size: 1.2em;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #555;
  }

  .client-info {
    margin-top: auto;
  }

  .client-details {
    display: flex;
    flex-direction: column;
  }

  .client-name {
    font-weight: 600;
    color: #263545;
  }

  .client-location {
    font-size: 0.9em;
    color: #11552F;
  }

  /* Optional hover effect for cards */
  .testimonial-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }

  .faq-container {
    max-width: 900px;
    margin: 0 auto;
  }

  .faq-item {
    background: #F4F3EF;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: box-shadow 0.3s;
  }

  .faq-header {
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1em;
  }

  .faq-header:hover {
    background-color: #f9f9f9;
  }

  .faq-question {
    margin: 0;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
  }

  .faq-answer.show {
    max-height: 500px; /* large enough to show content */
    padding: 15px 20px;
  }

  /* Optional: style for icons or arrows */
  .toggle-icon {
    transition: transform 0.3s;
  }
  .toggle-icon.rotate {
    transform: rotate(45deg);
  }
/* Hide Google branding if you want it cleaner */
    .goog-te-banner-frame.skiptranslate {display: none !important;} 
    body {top: 0px !important;}
    #google_translate_element { text-align: center; margin: 10px 0; }
  /* Responsive */
  @media(max-width: 768px) {
    body {
      padding: 30px 10px;
    }
/* Make it full width on mobile */
@media (max-width: 768px) {
    .booking-container {
        max-width: 95%;  /* almost full width on phone */
        padding: 1em;
    }
  @media (max-width: 600px) {
    #bookingForm {
      padding: 20px;
    }
  }
</style>