body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f8fc;
    color: #333;
  }
  header {
    background: #ffffff;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px; /* your height */
    
    position: sticky;
    position: -webkit-sticky; /* mobile Safari support */
    top: 0;
    z-index: 10001;
  
    /* Add subtle bottom shadow */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  /* Floating Account Box */
.account-tab-floating {
  position: absolute;      /* float over header */
  top: 0;                  /* stick to top edge */
  right: 0;                /* stick to right edge */
  background: #3d9bdf;     /* same color as header */
  color: white;
  padding: 6px 12px;       /* small, subtle */
  border-radius: 4px 4px 4px 4px; /* rounded on left side only */
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  z-index: 10002;
}
@media (max-width: 768px) {
  .account-tab-floating {
    display: none;
  }
}
/* Links inside box */
.account-tab-floating a {
  color: white;
  text-decoration: none;
  margin: 0 4px;
  transition: color 0.2s ease;
}

.account-tab-floating a:hover {
  color: #cce6ff;
}

/* Divider */
.account-tab-floating .divider {
  color: rgba(255,255,255,0.5);
}

/* Mobile adjustments */
@media(max-width: 768px) {
  .account-tab-floating {
    font-size: 12px;
    padding: 4px 8px;
  }
  .account-tab-floating a {
    margin: 0 2px;
  }


}
  .logo {
    font-size: 22px;
    font-weight: bold;
  }
  .logo img {
    margin-top: 20px;
    height: 220px; /* Adjust size */
    width: auto;   /* Maintain aspect ratio */
}

/* Mobile-only logo sizing */
@media (max-width: 768px) {
  .logo img {
    height: 200px; /* slightly smaller than 80px */
  }

  .logo {
    font-size: 20px; /* tiny text shrink if logo text is ever used */
  }
}

/* Mobile phone number at bottom of slideout menu */
.slideout-mobile-phone {
  display: flex;
  justify-content: center;   /* center horizontally */
  align-items: center;       /* center vertically if multi-line */
  margin-top: 30px;          /* more space from account links above */
  font-size: 20px;           /* larger number */
  font-weight: bold;
  color: black;
  text-align: center;        /* ensure text is centered */
}

/* Phone icon styling */
.slideout-mobile-phone i.fas.fa-phone {
  margin-right: 12px;        /* space between icon and number */
  font-size: 28px;           /* larger icon */
}

/* Hamburger button */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: rgb(0, 0, 0);
  font-size: 28px;
  cursor: pointer;
  margin-left: auto;
}

/* Slideout menu default - hidden offscreen always */
.slideout-menu {
  position: fixed;
  top: 0;
  right: -100%;       /* fully hidden offscreen */
  width: 300px;
  max-width: 80%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  padding: 60px 20px;
  transition: right 0.3s ease;
  z-index: 10000;
}

/* Slide in when .show class is added */
.slideout-menu.show {
  right: 0;
}
.slideout-menu a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.slideout-menu a:hover {
  color: #5f8fb8;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Slideout dropdown inside menu */
.slideout-dropdown-btn {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
}

.slideout-dropdown-menu {
  display: none;
  flex-direction: column;
  padding-left: 15px;
  margin-bottom: 15px;
}

.slideout-dropdown-menu a {
  font-size: 16px;
}

@media (max-width: 879px) {
  /* Hide desktop nav */
  .main-nav {
    display: none !important;
  }
  .about-left {
    margin-top: 140px;
  }
  

  /* Show hamburger */
  .hamburger {
    display: block !important;
    position: relative; /* make sure it's on top */
    z-index: 10001;     /* above slideout menu */
  }

  /* Hide standard dropdowns in desktop nav */
  .dropdown-menu {
    display: none !important;
  }

  /* Slideout menu - hidden offscreen initially */
  .slideout-menu {
    position: fixed;
    top: 90px; /* adjust this to match your header height (logo + padding) */
    right: -100%;       /* fully hidden offscreen */
    width: 300px;
    max-width: 80%;
    height: calc(100% - 100px); /* fill the rest of screen below header */
    background: rgba(248, 248, 248, 0.75);
    backdrop-filter: blur(12px);   /* 🔥 blur behind menu */
    -webkit-backdrop-filter: blur(12px); /* Safari support */
    display: flex;
    flex-direction: column;
    padding: 20px; /* optional: reduce top padding since header space already accounted for */
    transition: right 0.3s ease;
    z-index: 10000;
  }
  /* Slide in when .show class is added */
  .slideout-menu.show {
    right: 0;
  }

/* Slideout menu links – full-width rectangles */
.slideout-menu a {
  display: block;
  width: 100%;
  padding: 14px 22px;
  box-sizing: border-box;
  color: rgb(0, 0, 0);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.92);
  transition: background 0.2s ease, color 0.2s ease;
}

/* Hover highlights entire row */
.slideout-menu a:hover {
  background: rgba(255,255,255,0.06);
  color: #5f8fb8;
}
/* Close button inside slideout */
.close-btn {
  position: absolute;
  top: 10px;                 /* slightly higher */
  right: 18px;
  font-size: 22px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(179, 179, 179, 0.5); /* subtle square */
  border-radius: 6px;        /* soft corners */
  color: #000000;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

/* Hover effect */
.close-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
}

/* Services button – match links exactly */
.slideout-dropdown-btn {
  all: unset;                /* 🔥 removes browser defaults */
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 22px;
  box-sizing: border-box;
  color: rgb(0, 0, 0);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.92);
  transition: background 0.2s ease, color 0.2s ease;
}

/* Hover full rectangle */
.slideout-dropdown-btn:hover {
  background: rgba(255,255,255,0.06);
  color: #5f8fb8;
}
 /* Dropdown container */
.slideout-dropdown-menu {
  display: none;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

/* Dropdown links – boxed like main links */
.slideout-dropdown-menu a {
  display: block;
  width: 100%;
  padding: 13px 22px;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.02);
  transition: background 0.2s ease, color 0.2s ease;
}

/* Hover */
.slideout-dropdown-menu a:hover {
  background: rgba(255,255,255,0.08);
  color: #5f8fb8;
}
}





.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 42px;
  left: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
  display: none;
  flex-direction: column;
  min-width: 240px;
  z-index: 9999;
}


/* keeps dropdown open while hovering */
.nav-dropdown:hover .dropdown-menu {
  display: flex;
}


.dropdown-toggle {
  cursor: pointer;
}


/* Mobile account links inside slideout menu */
.slideout-account-links {
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;
  margin-top: 20px;
  border-bottom: 1px solid rgba(8, 8, 8, 0.52); /* subtle divider */
  font-size: 12px;
  font-weight: 600;
}

.slideout-account-links a {
  color: rgb(0, 0, 0); /* match sidebar */
  text-decoration: none;
  margin: 0 6px;
  font-size: 14px;
  transition: color 0.2s ease;
}

.slideout-account-links a:hover {
  color: #5f8fb8; /* accent color on hover */
}

.slideout-account-links .divider {
  color: rgba(0, 0, 0, 0.92); /* subtle vertical divider */
}
  nav a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: 600;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  /* ===== STABLE SERVICES DROPDOWN ===== */

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .nav-dropdown {
    position: relative;
  }
  
  .dropdown-toggle {
    background: none;
    border: none;
    color: rgb(0, 0, 0);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .dropdown-menu {
    position: absolute;
    top: 42px;
    left: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.18);
    display: none;
    flex-direction: column;
    min-width: 240px;
    z-index: 9999;
  }

 .dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: #222;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

/* icon styling */
.dropdown-menu a i {
  width: 20px;
  text-align: center;
  color: #5f8fb8;
  font-size: 16px;
}

/* FULL ROW hover */
.dropdown-menu a:hover {
  background: rgba(95, 143, 184, 0.12);
  color: #000;
}
  
  .hero {
    position: relative;
    background: url('images/ggrg.png') no-repeat center center;
    background-size: cover;
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 90px 20px;
  }
  
  .hero-content {
    display: inline-block;
    background: rgba(0, 0, 0, 0.75);
    padding: 30px 40px;
    border-radius: 10px;
  }
  
  .hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {

    /* Hero spacing */
    .hero {
      padding: 60px 18px; /* slightly more vertical space */
    }
  
    .hero-content {
      padding: 26px 26px; /* more padding inside the box */
      margin-top: -15px;  /* still pulled up, but less aggressive */
    }
  
    /* Headline */
    .hero h1 {
      font-size: 28px;
      line-height: 1.3;
    }
  
    /* Description */
    .hero p {
      font-size: 16px;
      margin-bottom: 18px;
    }
  
    .hero-subtext {
      font-size: 12px;
      margin-top: 6px;
    }
  
    /* Smaller CTA button */
    .hero button {
      padding: 10px 18px; /* smaller button */
      font-size: 13px;
      border-radius: 5px;
    }
  }
  /* Subtle pick-up/drop-off text */
  .hero-subtext {
    font-size: 14px;                 /* much smaller than main paragraph */
    opacity: 0.7;                     /* subtle, slightly faded */
    display: inline-block;
    margin-left: 5px;                 /* spacing from the NJ Counties text */
    font-weight: 400;                  /* normal weight, not bold */
  }
  
  .hero button {
    background: white;
    color: #5f8fb8;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
  }
  .services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 60px 40px;
}

.service-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  position: relative;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 10px;
  color: #5f8fb8;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.service-card li {
  padding: 6px 0;
}

.cta-btn {
  display: inline-block;
  margin-top: 10px;
  color: #ffffff;
  background: #5f8fb8;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.cta-btn:hover {
  background: #477799;
}

/* Dynamic Booking Section */
.dynamic-booking {
  padding: 60px 40px;
  background: #f4f8fc;
}

.booking-container {
  display: flex;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
  flex-wrap: wrap;
}

.booking-left {
  flex: 1 1 400px;
}

.booking-left h2 {
  color: #5f8fb8;
  font-size: 28px;
  margin-bottom: 15px;
}

.booking-left p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.booking-left ul {
  list-style: disc;
  margin-left: 20px;
}

.booking-right {
  flex: 1 1 350px;
}

.booking-right form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.booking-right input,
.booking-right select,
.booking-right textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.booking-right textarea {
  min-height: 100px;
}

.booking-right button {
  background: #5f8fb8;
  color: white;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

.booking-right button:hover {
  background: #477799;
}

#bookingMessage {
  margin-top: 15px;
  font-weight: bold;
  color: green;
}

/* Responsive */
@media(max-width:900px) {
  .booking-container {
    flex-direction: column;
  }
}
  
/* ABOUT US SECTION - Blue Background Version */
.about-us {
  padding: 80px 20px;
  background: #6fa3c8; /* Blue background */
  color: white; /* Text stands out */
}

.about-us .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.about-left {
  flex: 1 1 500px;
}

.about-left h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-left p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-right {
  flex: 1 1 400px;
  position: relative;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
}

.stats-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 82, 143, 0.85); /* Darker blue overlay for readability */
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
}

.stats-overlay p {
  margin: 5px 0;
}

/* Responsive */
@media(max-width: 900px) {
  .about-us .container {
    flex-direction: column;
  }

  .about-right {
    order: -1; /* Moves image above text on mobile */
  }
}
/* About Us Gallery Button */
.about-gallery-btn {
  display: inline-block;
  background: white;
  color: #5f8fb8; /* Your brand blue for text */
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 10px; /* small gap from text */
}

.about-gallery-btn:hover {
  background: #f0f0f0;
  color: #477799; /* subtle hover effect */
}

/* Responsive */
@media(max-width: 768px) {
  .about-gallery-btn {
    display: block;
    text-align: center;
    width: fit-content;
    margin-top: 15px;
  }
}
/* TESTIMONIALS SECTION */
.testimonials {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
  color: #333;
  overflow: hidden;
}

.testimonials h2 {
  color: #5f8fb8;
  font-size: 32px;
  margin-bottom: 40px;
}

.carousel-wrapper {
  position: relative;
  max-width: 700px;
  margin: 0 auto 50px auto;
  height: 160px;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.7s ease-in-out;
}

.testimonial {
  flex: 0 0 100%;
  padding: 0 20px;
  box-sizing: border-box;
  font-style: italic;
}

.testimonial p {
  font-size: 18px;
  line-height: 1.6;
}

.testimonial span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.stars-display {
  margin-top: 8px;
  font-size: 20px;
  color: gold;
}

/* Testimonial Form */
.testimonial-form {
  max-width: 500px;
  margin: auto;
  text-align: left;
}

.testimonial-form h3 {
  margin-bottom: 20px;
  color: #5f8fb8;
}

.testimonial-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.testimonial-form input,
.testimonial-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.testimonial-form button {
  background: #5f8fb8;
  color: white;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.testimonial-form button:hover {
  background: #477799;
}

/* STAR RATING */
.star-rating {
  display: flex;
  gap: 5px;
  font-size: 24px;
  cursor: pointer;
}

.star-rating span {
  color: #ccc;
  transition: color 0.2s ease;
}

.star-rating span.hover,
.star-rating span.selected {
  color: gold;
}

/* RESPONSIVE */
@media(max-width: 600px) {
  .testimonials h2 {
    font-size: 26px;
  }

  .testimonial p {
    font-size: 16px;
  }

  .carousel-wrapper {
    height: 180px;
  }

  .testimonial-form {
    width: 100%;
  }
}


/* CONTACT SECTION - MODERN BLUE VERSION */
.contact {
  background: #6fa3c8; /* Blue background */
  padding: 80px 20px;
  color: white; /* Text contrast */
}

.contact .container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact .contact-intro {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact .form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact input,
.contact select,
.contact textarea {
  flex: 1 1 250px;
  padding: 14px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 16px;
}

.contact input:focus,
.contact select:focus,
.contact textarea:focus {
  box-shadow: 0 0 0 3px rgba(95, 143, 184, 0.4);
}

.contact textarea {
  min-height: 140px;
  resize: vertical;
}

.contact button {
  background: #fff;
  color: #5f8fb8;
  border: none;
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

#formMessage {
  text-align: center;
  margin-top: 20px;
  font-weight: bold;
  font-size: 16px;
  color: #ffffcc; /* Soft highlight message */
}

/* Responsive */
@media(max-width: 600px) {
  .contact .form-row {
    flex-direction: column;
  }
}
  .policy {
    padding: 50px 40px;
    background: #f9fbfe;
  }
  
  .policy h2 {
    color: #5f8fb8;
  }
  /* Contact Preference - Modern Pill Style */
.contact-preference {
  text-align: left;
  margin-bottom: 25px;
}

.contact-preference p {
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  font-size: 16px;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.15);
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

/* Hide actual checkbox */
.contact-options input[type="checkbox"] {
  display: none;
}

/* Text inside label */
.contact-options span {
  color: #fff;
  font-weight: 500;
}

/* CHECKED STATE - changes pill background + text color */
.contact-options input[type="checkbox"]:checked + span {
  color: #fff; /* white text on selected pill */
}

.contact-options input[type="checkbox"]:checked {
  /* we will style label using :has() if browser supports OR use JS fallback */
}

/* Better approach: use label styling with checkbox checked */
.contact-options input[type="checkbox"]:checked + span {
  /* fill the background of label when checked */
}

/* CSS trick: wrap label in :has() (works in modern browsers) */
.contact-options label:has(input:checked) {
  background: #ffd700; /* gold background for selected */
  color: #333; /* dark text on gold */
}

/* Hover effect */
.contact-options label:hover {
  background: rgba(255, 215, 0, 0.3);
}

/* Responsive */
@media(max-width: 480px) {
  .contact-options {
    flex-direction: column;
    gap: 12px;
  }
}

/* Wrap both preference sections side by side */
.contact-preferences-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 25px;
}

/* Preferred time dropdown */
.contact-time {
  text-align: left;
  flex: 1 1 200px;
}

.contact-time p {
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  font-size: 16px;
}

.contact-time select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 16px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  appearance: none;
}

.contact-time select option {
  color: #333;
}

/* Focus style to match other fields */
.contact-time select:focus {
  box-shadow: 0 0 0 3px rgba(95, 143, 184, 0.4);
}

/* Mobile adjustments */
@media(max-width: 600px) {
  .contact .form-row,
  .contact-preferences-wrapper {
    flex-direction: column;
  }

  .contact input,
  .contact select,
  .contact textarea {
    flex: 1 1 auto;
    font-size: 15px;
    padding: 12px;
  }

  .contact-time select {
    padding: 12px;
  }
}

/* Brands & Service Areas Section */
.brands-service-section {
  background: #fefefe; /* light blue/white background */
  padding: 10px 50px;
  color: #000000; /* text color */
  font-family: Arial, sans-serif;

  /* Rounded top corners */
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;

  /* Subtle top shadow */
  box-shadow: 0 -3px 8px rgba(0, 0, 0, 0.1); /* vertical offset negative for top shadow */
}
.brands-service-section .container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap; /* wrap on smaller screens */
}

/* Columns */
.brands-column, .areas-column {
  flex: 1;
  min-width: 300px;
}

/* Section Headings */
.brands-column h2, .areas-column h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  display: flex;
  color: #5f8fb8;
  align-items: center;
  gap: 12px;
}

/* Note under Brands heading */
.brands-column .note {
  font-size: 14px;
  font-style: italic;
  color: #6f6f6f;
}

.column-image {
  width: 120px;           /* size of the circle */
  height: 120px;          /* make it square so the circle works */
  border-radius: 50%;     /* makes it circular */
  object-fit: cover;      /* ensures the image fills the circle */
  margin-bottom: 20px;
  border: 3px solid #5f8fb8; /* optional subtle border */
}
/* Brands grid: multiple columns */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px 40px;
}

/* Brand categories */
.brand-category h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Diamond bullets for brands list */
.brand-category ul {
  list-style: none; /* remove default bullets */
  padding-left: 0;
}

.brand-category ul li {
  position: relative;
  padding-left: 20px; /* space for diamond */
  font-size: 16px;
  margin-bottom: 6px;
}

.brand-category ul li::before {
  content: "\f219"; /* Font Awesome solid diamond unicode */
  font-family: "Font Awesome 5 Free"; /* make sure Font Awesome is loaded */
  font-weight: 900; /* solid style */
  color: #000000; /* white diamond */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 10px; /* smaller diamond size */
  line-height: 1;
}

/* Service areas grid */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.areas-grid span {
  background: rgba(95, 143, 184, 0.10); /* subtle light blue background */
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 16px;
  display: inline-block;
  transition: background 0.3s ease, transform 0.2s ease;
}

.areas-grid span:hover {
  background: rgba(95, 143, 184, 0.35); /* slightly darker on hover */
  transform: scale(1.05); /* subtle pop effect */
}
/* Diamond icon at end of column headings */
.brands-column h2 i,
.areas-column h2 i {
  color: #dfdfdf;
  font-size: 22px;
  display: none;
}

/* Smaller icons next to each brand category */
.brand-category h3 i {
  color: #5f8fb8;
  font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .brands-service-section .container {
    flex-direction: column;
    gap: 40px;
  }

  .column-image {
    display: block;
    margin: 0 auto 20px auto;
  }

  .brands-column h2, .areas-column h2 {
    text-align: center;
    justify-content: center;
  }

  .brand-category h3 {
    text-align: center;
    justify-content: center;
  }
}






/* FOOTER */
footer {
  background: #333;
  color: white;
  padding: 50px 20px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3 {
  margin-bottom: 15px;
  color: #5f8fb8; /* Accent color */
  font-size: 20px;
}

.footer-section p, 
.footer-section a {
  color: white;
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
}

.footer-section a:hover {
  color: #a0d8f1; /* subtle hover color */
}

/* Make Contact info more prominent */
.footer-phone a, .footer-email a {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
}

.footer-phone a:hover, .footer-email a:hover {
  color: #a0d8f1;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icons a img {
  width: 32px;
  height: 32px;
  filter: brightness(1); 
  transition: transform 0.2s, filter 0.2s;
}

.social-icons a:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Payment Methods */
.payment-methods .payment-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.payment-methods .payment-icons img {
  width: 50px;
  height: auto;
}

/* Reviews Button */
.reviews-section .reviews-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #5f8fb8;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: 5px;
}

.reviews-section .reviews-btn:hover {
  background: #4b7da6;
}

/* Quick Links */
.quick-links ul {
  list-style: none;
  padding: 0;
}

.quick-links ul li {
  margin-bottom: 8px;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

/* Responsive Footer */
@media(max-width: 768px) {
  .footer-container {
    gap: 15px;
    padding-bottom: 10px;
  }

  .footer-section {
    flex: 1 1 100%;
    margin-bottom: 15px;
  }

  .footer-section h3 {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .footer-section p,
  .footer-section a {
    margin-bottom: 5px;
    font-size: 18px;
  }

  .social-icons {
    gap: 8px;
    margin-top: 5px;
  }

  .social-icons a img {
    width: 28px;
    height: 28px;
  }

  .payment-methods .payment-icons img {
    width: 40px;
  }

  .footer-bottom {
    margin-top: 20px;
    padding-top: 10px;
    font-size: 12px;
  }
}



/* Policy Section Styles */
.policy-content {
  padding: 40px 20px;
  background: #f9fbfe;
  color: #333;
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h2 {
  color: #5f8fb8;
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

.back-btn {
  background: #5f8fb8;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 20px;
}

.back-btn:hover {
  background: #477799;
}

.policy-sections {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.policy-section {
  display: none;
}

.policy-section.active {
  display: block;
}

.policy-section h3 {
  margin-bottom: 10px;
  color: #477799;
}

.policy-text {
  max-height: 250px;
  overflow-y: auto;
  padding: 12px;
  background: white;
  border-radius: 8px;
  border: 1px solid #ccc;
  line-height: 1.6;
}

* Scrollbar styling */
.policy-text::-webkit-scrollbar {
  width: 8px;
}

.policy-text::-webkit-scrollbar-thumb {
  background-color: #5f8fb8;
  border-radius: 4px;
}

.policy-text::-webkit-scrollbar-track {
  background: #eaeaea;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .policy-text {
    max-height: 200px;
    font-size: 14px;
  }

  .policy-content h2 {
    font-size: 26px;
  }
}



/* ============================= */
/* DYNAMIC ABOUT PAGE (47) */
/* ============================= */

.about-page47 {
  background: #ffffff;
  color: #333;
}

/* HERO */
.about-hero47 {
  background: #5f8fb8;
  color: white;
  padding: 40px 20px;
  text-align: center;
  margin-top: -20px;    /* slightly overlap section above */
  box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* subtle shadow for depth */
}

.about-hero47 h1 {
  font-size: 44px;
  margin-bottom: 10px;
}

.about-hero47 p {
  font-size: 18px;
  opacity: 0.95;
}

/* WRAPPER */
.about-wrapper47 {
  max-width: 1100px;
  margin: 70px auto;
  padding: 0 20px;
}

/* STORY */
.about-story47 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text47 h2 {
  color: #5f8fb8;
  margin-bottom: 15px;
}

.about-text47 p {
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-image47 img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* VALUE CARDS */
.about-cards47 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.about-card47 {
  background: #f4f8fc;
  padding: 35px;
  border-radius: 18px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.about-card47 i {
  font-size: 34px;
  color: #5f8fb8;
  margin-bottom: 15px;
}

.about-card47:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* CAROUSEL */
.about-carousel47 {
  background: #5f8fb8;
  color: white;
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 80px;
}

.about-slide47 {
  display: none;
}

.about-slide47.active47 {
  display: block;
}

/* CTA */
.about-cta47 {
  text-align: center;
  margin-top: -30px;
  margin-bottom: 30px;
}

.about-cta47 button {
  background: linear-gradient(145deg, #5f8fb8, #3e6fa0);
  color: white;
  border: none;
  padding: 18px 36px;
  font-size: 18px;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  /* Floating effect */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 4px 6px rgba(0,0,0,0.15);
}

.about-cta47 button:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35), 0 6px 10px rgba(0,0,0,0.2);
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .about-story47 {
    grid-template-columns: 1fr;
  }
}


/* MEET OUR TECHNICIANS */
.about-team47 {
  background: #f4f8fc;
  padding: 60px 20px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 80px;
}

.about-team47 h2 {
  color: #5f8fb8;
  font-size: 36px;
  margin-bottom: 15px;
}

.about-team47 p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.team-departments47 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-card47 {
  background: white;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-card47 i {
  font-size: 36px;
  color: #5f8fb8;
  margin-bottom: 15px;
}

.team-card47 h3 {
  color: #1a73e8;
  margin-bottom: 12px;
  font-size: 20px;
}

.team-card47 p {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555;
}

.team-card47:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .team-departments47 {
    grid-template-columns: 1fr;
  }
}
/* Remove default anchor styling for trusted cards */
.trusted-logos47 a.trusted-card47 {
  text-decoration: none;  /* remove underline */

  display: block;         /* ensure the card retains block layout */
}

/* Add pointer cursor to indicate clickability */
.trusted-logos47 a.trusted-card47:hover {
  cursor: pointer;
}

/* TRUSTED & VERIFIED SECTION */
.about-trusted47 {
  background: #5f8fb8; /* match hero header */
  color: white;
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 80px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-trusted47 h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #fff;
}

.about-trusted47 p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.trusted-logos47 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  align-items: stretch;
  justify-items: center;
}

.trusted-card47 {
  background: #fff;
  color: #333;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  max-width: 220px;
}

.trusted-card47 img {
  width: 70px;
  margin-bottom: 15px;
}

.trusted-card47 p {
  font-size: 14px;
  line-height: 1.5;
}

.trusted-card47 p strong {
  color: #d32f2f; /* red accent for emphasis, like BBB */
}

/* Shake + Lift Hover Effect (continuous on hover) */
.trusted-card47:hover {
  transform: translateY(-8px); /* lift only */
  box-shadow: 0 16px 35px rgba(0,0,0,0.25); /* bigger shadow */
  animation: shake 0.5s infinite; /* continuous shake while hovering */
}

/* Shake Keyframes */
@keyframes shake {
  0% { transform: translateY(-8px) translateX(0) rotate(0deg); }
  10% { transform: translateY(-8px) translateX(-2px) rotate(-1deg); }
  20% { transform: translateY(-8px) translateX(2px) rotate(1deg); }
  30% { transform: translateY(-8px) translateX(-2px) rotate(-1deg); }
  40% { transform: translateY(-8px) translateX(2px) rotate(1deg); }
  50% { transform: translateY(-8px) translateX(0) rotate(0deg); }
  100% { transform: translateY(-8px) translateX(0) rotate(0deg); }
}
/* Responsive */
@media (max-width: 768px) {
  .trusted-logos47 {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}


/* ========================= */
/* DYNAMIC GALLERY PAGE 82 */
/* ========================= */

.gallery-page82 {
  background: #ffffff;
  color: #333;
}

/* HERO */
.gallery-hero82 {
  background: #5f8fb8;
  color: white;
  padding: 40px 20px;
  text-align: center;
  margin-top: -20px;    /* slightly overlap section above */
  box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* subtle shadow for depth */
}

.gallery-hero82 h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.gallery-hero82 p {
  font-size: 18px;
  opacity: 0.95;
}

/* WRAPPER */
.gallery-wrapper82 {
  max-width: 1200px;
  margin: 70px auto;
  padding: 0 20px;
}

/* ALBUM */
.gallery-album82 {
  margin-bottom: 90px;
}

.gallery-album82 h2 {
  color: #5f8fb8;
  margin-bottom: 30px;
  font-size: 30px;
}

/* SUB ALBUMS */
.gallery-subalbums82 {
  display: grid;
  gap: 50px;
}

.gallery-sub82 h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

/* IMAGE GRID */
.gallery-grid82 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
}

.gallery-grid82 img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.gallery-grid82 img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .gallery-hero82 h1 {
    font-size: 32px;
  }
}




/* ========================= */
/* LEGAL PAGES 91 */
/* ========================= */

.legal-page91 {
  background: #fff;
}

/* HERO */
.legal-hero91 {
  background: #5f8fb8;
  color: white;
  padding: 40px 20px;
  text-align: center;
  margin-top: -20px;    /* slightly overlap section above */
  box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* subtle shadow for depth */
}

.legal-hero91 h1 {
  font-size: 36px;
}

/* WRAPPER */
.legal-wrapper91 {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20 20px;
}

/* GRID FOR TERMS */
.legal-grid91 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* DOCUMENT WINDOW */
.legal-doc91 {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  height: 420px;
}

/* HEADER */
.legal-doc-header91 {
  background: #5f8fb8;
  color: white;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 14px 14px 0 0;
}

/* DOWNLOAD */
.download-btn91 {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

/* BODY (SCROLLABLE) */
.legal-doc-body91 {
  padding: 16px;
  overflow-y: auto;
  color: #000;
  font-size: 14px;
  line-height: 1.6;
}



/* ========================= */
/* SERVICES PAGE */
/* ========================= */

.services-page64 {
  background: #ffffff;
}

/* HERO */
.services-hero59 {
  background: #5f8fb8;
  color: #ffffff;
  padding: 50px 20px;
  text-align: center;
  margin-top: -20px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

.services-hero59 h1 {
  font-size: 44px;
  margin-bottom: 12px;
}

.services-hero59 p {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0.95;
}

/* WRAPPER */
.services-wrapper59 {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* SERVICE CARD */
.service-card59 {
  background: #f4f8fc;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.09);
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
}

/* LEFT COLUMN */
.service-media59 {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-media59 img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

/* CTA */
.cta-btn59 {
  background: #5f8fb8;
  color: #ffffff;
  padding: 14px;
  text-align: center;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn59:hover {
  background: #4b7da6;
}

/* RIGHT COLUMN */
.service-content59 h2 {
  font-size: 32px;
  color: #000000;
  margin-bottom: 12px;
}

.service-description59 {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #333;
}

/* SERVICES OFFERED */
.services-offered59 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.service-item59 {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.service-item59 strong {
  display: block;
  color: #1a73e8;
  margin-bottom: 4px;
}

.service-item59 span {
  font-size: 14px;
  color: #555;
}

/* CONCERN / REASSURANCE */
.service-concern59 {
  background: #eaf1fb;
  border-left: 4px solid #1a73e8;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 15px;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 950px) {
  .service-card59 {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .services-offered59 {
    grid-template-columns: 1fr;
  }

  .service-content59 h2 {
    text-align: center;
  }
}
/* MOBILE ONLY: Move service title above image */
@media (max-width: 768px) {
  .service-card59 {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
  }

  /* Move the title above the image */
  .service-content59 h2 {
    order: -1;        /* Makes the <h2> appear first */
    text-align: center;
    margin-bottom: 16px;
  }

  /* Optional: center the image and CTA under title */
  .service-media59 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* Keep paragraph centered */
  .service-content59 p {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .service-media59 h2 {
    font-size: 32px;        /* same as original */

    text-align: center;     /* center on mobile */
    margin-bottom: 16px;    /* spacing below title */
  }

  .service-media59 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;             /* space between title, image, and button */
  }

  /* Keep paragraph centered */
  .service-content59 p {
    text-align: center;
  }
}
/* ========================= */
/* BOOKING PANEL CSS - SINGLE DIV FORM */
/* ========================= */

.booking-panel59 {
  display: flex;
  flex-direction: row; /* horizontal on desktop */
  gap: 24px;
  background: #f4f8fc;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.09);
  padding: 40px;
  margin-top: 20px;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  position: relative;
  transition: all 0.3s ease;
  flex-wrap: wrap; /* allow wrapping on smaller screens */
}

/* Form container takes full width of panel */
.booking-form59 {
  flex: 1 1 100%; /* grow/shrink, full width */
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: row; /* horizontal fields on desktop */
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
  box-sizing: border-box;
}

/* All inputs / selects / textarea */
.booking-form59 input,
.booking-form59 select,
.booking-form59 textarea {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
  background: #f9f9f9;
  box-sizing: border-box;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

/* Make each input full width on mobile */
.booking-form59 input,
.booking-form59 select,
.booking-form59 textarea {
  flex: 1 1 45%; /* desktop two items per row */
  min-width: 180px;
}

.booking-form59 textarea {
  flex: 1 1 100%;
  min-height: 60px;
  resize: vertical;
}

.booking-form59 input:focus,
.booking-form59 select:focus,
.booking-form59 textarea:focus {
  border-color: #5f8fb8;
  box-shadow: 0 0 4px rgba(95,143,184,0.5);
  outline: none;
}

/* Labels */
.booking-form59 label {
  font-weight: 600;
  font-size: 14px;
  color: #333;
  width: 100%;
}

/* Full Name field spans full width */
.booking-form59 .full-name {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Next Button */
.booking-form59 .booking-next-btn59 {
  background: #5f8fb8;
  color: #fff;
  padding: 14px 24px;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  flex: 1 1 100%;
  max-width: 200px;
  align-self: flex-start;
}

.booking-form59 .booking-next-btn59:hover {
  background: #4b7da6;
}

/* Close Button */
.booking-panel59 .booking-close59 {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  color: #333;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.booking-panel59 .booking-close59:hover {
  background: #ff4d4d;
  color: #fff;
}

/* ========================= */
/* MOBILE LAYOUT - STACK EVERYTHING */
/* ========================= */
@media (max-width: 768px) {
  .booking-panel59 {
    flex-direction: column;
    padding: 24px;
  }

  .booking-form59 {
    flex-direction: column;
    gap: 12px;
  }

  .booking-form59 input,
  .booking-form59 select,
  .booking-form59 textarea {
    flex: 1 1 100%;
  }

  .booking-form59 .booking-next-btn59 {
    align-self: stretch;
  }
}

/* ========================== */
/* PROMOTIONAL BOTTOM BANNER  */
/* ========================== */

.promo-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 340px;
  font-family: Arial, sans-serif;
  z-index: 9999;
  transition: all 0.3s ease;
}
.account-tab-floating .divider {
  margin: 0 10px; /* space on both sides of the | */
  opacity: 0.6;
}

.account-phone {
  font-weight: 600;
  white-space: nowrap;
}

.account-phone i {
  margin-right: 6px;
}
/* Tab when collapsed */
.promo-tab {
  background-color: #fafafa; /* off-white */
  color: #333;
  padding: 14px 16px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between; /* space between text stack and QR */
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Text stack */
.promo-main-text {
  display: flex;
  flex-direction: column; /* stack main + subtext vertically */
  justify-content: center;
}

/* Main text */
.promo-text {
  font-weight: bold;
  font-size: 18px;
  color: #e74c3c; /* red */
  margin: 0;
}

/* Subtext under main text */
.promo-subtext {
  font-size: 12px;
  color: #000;
  margin: 2px 0 0 0; /* small gap */
}

/* QR/Icon image */
.promo-icon {
  width: 40px;  /* larger QR */
  height: 40px;
  object-fit: contain;
  margin-left: 12px; /* spacing from text stack */
  align-self: center; /* vertically center with text */
}

/* Close button near text */
.promo-close {
  position: relative; 
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px; 
}

.promo-close:hover {
  background: #e74c3c;
  color: white;
}

/* Expanded content */
.promo-expanded-content {
  display: none;
  background-color: #ffffff;
  color: #333;
  padding: 16px;
  border-radius: 0 0 12px 12px;
  margin-top: 4px;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.promo-expanded-content p {
  margin: 0 0 10px 0;
}

.promo-expanded-content .promo-cta {
  display: inline-block;
  background-color: #e74c3c;
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
}

.promo-expanded-content .promo-cta:hover {
  background-color: #c0392b;
  color: white;
}

/* ========================== */
/* RESPONSIVE MOBILE LAYOUT    */
/* ========================== */
@media(max-width: 500px){
  .promo-banner {
    width: 90%;
    bottom: 10px;
    right: 5%;
  }

  .promo-tab {
    flex-direction: row; /* horizontal layout with stacked text inside */
    justify-content: space-between;
    align-items: center;
  }

  .promo-main-text {
    flex-direction: column; /* stack texts vertically */
    justify-content: center;
    align-items: flex-start;
  }

  .promo-text {
    font-size: 16px;
    margin: 0;
  }

  .promo-subtext {
    margin-top: 2px;
    font-size: 12px;
  }

  .promo-icon {
    width: 36px;
    height: 36px;
    margin-left: 8px;
  }

  .promo-close {
    margin-left: 6px;
  }
}




/* Scrolling Logo Banner */
.logo-marquee {
  width: 100%;
  margin-bottom: -50PX;
  overflow: hidden;
  margin-top: 10PX;
  padding: 1rem 0;
}
.logos {
  display: flex;
  gap: 2rem;
  animation: scroll 20s linear infinite;
}
.logos img {
  height: 50px;
  object-fit: contain;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */

/* Medium screens: shrink proportionally */
@media (max-width: 1200px) {
  .photo-grid {
    grid-template-columns: repeat(5, 1fr); /* keep 5 columns */
    grid-auto-rows: calc(100vw / 5 * 0.66);
  }
}

/* Mobile screens */
@media (max-width: 768px) {
  .photo-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 columns for mobile */
    grid-auto-rows: calc(100vw / 4 * 0.66); /* maintain ratio */
  }
  .logo-marquee {



  }
  /* Show all photos on mobile */
  .photo-grid img.extra {
    display: block !important;
  }

  /* Hide Show More button */
  .show-more-wrapper {
    display: none;
  }
}