<style>
  /* Reset & basic styles */
    * { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: sans-serif; color: #FFDF00; }
  
  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 #193CA3;
  }
  
  #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 */
  }
  
  .motto-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
  }

  .motto-container img {
    height: 50px;
    object-fit: cover;
  }
  
  h1, h2, h3, h4, h5 {
    text-align: center;
    font-size: 1.5em;
    margin-top: 2em; 
    margin-bottom: 2em;
    color: #193CA3;
  }
  
#high-chat-btn{
  position:fixed; bottom:20px; right:20px;
  background:#ff0000; 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);
}
/* ========== HIGH CHAT BOX - CONTAINER ========== */
#high-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;
}
#high-chat-header{
  background:#111; color:#fff; padding:14px;
  display:flex; justify-content:space-between; align-items:center; font-weight:bold;
}
#high-chat-body{ padding:14px; }
#high-chat-form input, #high-chat-form textarea{
  width:100%; padding:10px; margin:5px 0; border:1px solid #ddd; border-radius:6px; box-sizing:border-box; font-size:14px;
}
#high-cBtn{ width:100%; padding:12px; background:#ff0000; color:#fff; border:none; border-radius:6px; font-weight:bold; cursor:pointer; margin-top:8px; }
#high-c_status{ text-align:center; font-size:13px; min-height:18px; margin-top:8px; }
#high-chat-success{ display:none; text-align:center; padding:20px 0; }


.booking-container {
  max-width: 75%;
  margin: 2em auto;
  padding: 2em;
  text-align: center;
  background: #193CA3;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#myBooking {
  max-width: 500px;
  margin: 30px auto;
  padding: 25px;
  background-color: #193CA3;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-align: center;
}

#myBooking p {
  color: #fff;
  line-height: 1.5;
  font-size: 15px;
}

#myBooking p strong {
  color: #fff;
  font-size: 18px;
}

#myBooking input,
#myBooking select,
#myBooking textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: inherit;
}

#myBooking input:focus,
#myBooking select:focus,
#myBooking textarea:focus {
  border-color: #fff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
  outline: none;
}

#myBooking input::placeholder,
#myBooking textarea::placeholder {
  color: #aaa;
  font-style: italic;
}

#myBooking select {
  background: #fff;
  color: #333;
}

#mainBtn {
  padding: 12px 24px;
  font-size: 1em;
  background-color: #fff;
  color: #193CA3;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  font-weight: bold;
  width: 100%;
  margin-top: 10px;
}

#mainBtn:hover {
  background-color: #e6e6e6;
  transform: translateY(-2px);
}

#b_status {
  color: #fff;
  font-size: 14px;
  margin-top: 12px;
  min-height: 20px;
  font-weight: bold;
}
  
  .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: #193CA3;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* FIXED */
    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;
    bottom: 10px;
    right: 10px;
    background: #fff;
    color: #193CA3;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1em;
  }
  
  .badge-free-quote {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    color: #193CA3;
    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: #FFDF00;
  }
  
  .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: #FFDF00;
    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: #fff;
    color: #193CA3;
    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: #fff;
  }

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

  .stars {
    margin-top: 10px;
  }

  .stars span {
    color: #FFDF00;
    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: #193CA3;
    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: #FFDF00;
    font-size: 1.5em;
  }

  .reviews {
    margin-top: 40px;
    text-align: center;
    background: #193CA3;
    color: #fff;       
    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: #FFDF00;        
    letter-spacing: 4px;   
    margin: 0.3em 0;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4); 
  }
  
  .recommended {
    display: inline-block;
    background-color: #fff;
    color: #11552F;
    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: #FFDF00;
  }

  .dstv-number {
   color: #193CA3
}

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

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

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

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

  /* 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: #193CA3;
    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: #454545;
  }

  .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 */
    .booking-container {
        max-width: 95%;  /* almost full width on phone */
        padding: 1em;
    }
  } /* FIXED: closed this media query */
  
  @media (max-width: 600px) {
    #bookingForm {
      padding: 20px;
    }
  }
</style>