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;
  margin-bottom: 55px;
  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: 1px;
}

@media (max-width: 1020px) {
  /* 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;
}
}

/* Keep the dropdown open reliably */
#servicesWrapperDesktop {
  position: relative;
}

/* Make the hover area "continuous" so you can move into the menu */
#servicesWrapperDesktop::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;          /* <-- bridge gap */
}

/* Show menu on hover OR when focusing inside (keyboard friendly) */
#servicesWrapperDesktop:hover .dropdown-menu,
#servicesWrapperDesktop:focus-within .dropdown-menu {
  display: flex;
}

/* Move menu closer (reduces gap) */
#servicesWrapperDesktop .dropdown-menu {
  top: calc(100% + 6px);  /* instead of 42px */
  left: 0;
}

/* Optional: smoother hover, prevents flicker */
#servicesWrapperDesktop .dropdown-menu {
  padding: 6px 0;
}

.contact-intro .fast-help-link {
  font-weight: 500;
  color: #e5e22b;
  text-decoration: underline;
}

.contact-intro .fast-help-link:hover {
  text-decoration: none;
}
/* STOP the contact section from being forced tall */
#contact, 
.contact-section, 
.contact-wrap, 
.contact-area {
  height: auto !important;
  min-height: 0 !important;
  padding-bottom: 40px !important; /* keep normal breathing room */
}

.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;
  }
  .slideout-menu {
    overflow-y: auto;              /* ✅ vertical scroll */
    overflow-x: hidden;            /* ✅ prevent horizontal scroll */
    -webkit-overflow-scrolling: touch; /* ✅ smooth iOS scrolling */
  }
  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;
}

/* Subtle pick-up/drop-off text */
.hero-subtext {
  font-size: 15px;
  opacity: 0.7;
  display: inline-block;
  margin-left: 5px;
  font-weight: 400;
}

/* ✅ FIRST BUTTON EXACTLY: white button + blue text */
.hero button {
  background: white;
  color: #5f8fb8;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

/* Layout: keep buttons side-by-side always (including mobile) */
.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 14px;
  flex-wrap: nowrap;              /* ✅ prevents stacking */
}

/* Right CTA column */
.hero-right-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* Label above only Request button */
.hero-cta-label {
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

/* ✅ SECOND BUTTON: yellow + black text */
.hero-btn-secondary {
  background: #ffc107;
  color: #111;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.hero-btn-secondary:hover {
  filter: brightness(0.95);
}
/* Hero motto link: look like normal text (no blue/underline) */
.hero-motto .hero-motto-link,
.hero-motto .hero-motto-link:visited,
.hero-motto .hero-motto-link:hover,
.hero-motto .hero-motto-link:active {
  color: inherit;
  text-decoration: none;
}

/* Optional: subtle hover cue without looking like a default link */
.hero-motto .hero-motto-link:hover {
  opacity: 0.9;
}
/* Slogan badge: outside black box, absolute so it won't increase hero height */
.hero-motto {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: rgba(0, 0, 0, 0.90);
  border: 1px solid rgba(255, 255, 255, 0.20);
  padding: 10px 14px;
  border-radius: 999px;

  font-size: 14px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
  white-space: nowrap;
}

.hero-motto i {
  color: #ffc107; /* yellow accent */
  font-size: 16px;
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding: 60px 18px;
  }

  .hero-content {
    padding: 26px 26px;
    margin-top: -15px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .hero-subtext {
    font-size: 14px;
    margin-top: 6px;
  }

  /* ✅ keep SIDE-BY-SIDE on mobile by making buttons smaller */
  .hero button {
    padding: 10px 14px;
    font-size: 12px;
    border-radius: 5px;
  }

  .hero-btn-secondary {
    padding: 10px 14px;
    font-size: 12px;
    border-radius: 5px;
  }

  .hero-cta-label {
    font-size: 12px;
  }

/* 🔑 MOBILE FIX: remove absolute positioning */
.hero-motto {
  position: static;           /* stops overlap */
  transform: none;
  margin: 14px auto 0;        /* spacing from buttons */
  font-size: 12px;
  padding: 8px 12px;
  margin-bottom: -40px;
  max-width: calc(100% - 24px);
  white-space: normal;
  text-align: center;
}

  #heroSlogan {
    display: block;
    line-height: 1.2;
    max-width: 100%;
  }
}
/* ===== SLOGAN ROTATION ANIMATION (ADD ONLY) ===== */
#heroSlogan {
  display: inline-block;
  transition: opacity 350ms ease, transform 350ms ease;
  will-change: opacity, transform;
}

/* slides out to the LEFT */
.hero-slogan-out {
  opacity: 0;
  transform: translateX(-14px);
}

/* slides back in clean */
.hero-slogan-in {
  opacity: 1;
  transform: translateX(0);
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  #heroSlogan {
    transition: none !important;
  }
}
/* Left CTA column (matches right column behavior) */
.hero-left-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px; /* same spacing as right */
}

/* Call Us label: looks like text, still clickable */
.hero-call-link {
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.2px;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.95;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-call-link:hover {
  opacity: 1;
  text-decoration: none;
}

.hero-call-link i {
  color: #ffffff;
  font-size: 14px;
}
/* Make both labels identical */
.hero-cta-label,
.hero-call-link {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.2px;
  white-space: nowrap;
  line-height: 1;
}

/* Keep Call Us from looking like a link */
.hero-call-link {
  text-decoration: none;
  color: #fff;
  opacity: 1; /* remove the “faded” look */
}

.hero-call-link:hover {
  text-decoration: none;
}
/* FORCE Request button to stay yellow */
.hero button.hero-btn-secondary {
  background: #ffc107 !important;
  color: #111 !important;
  font-weight: 800;
}
  .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;

  /* 🔑 keep button aligned without forcing weird stretching */
  display: flex;
  flex-direction: column;
  /* height: 100%;  ❌ remove this */
}

.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;

  /* ✅ this is enough to push the button down */
  flex: 1;
}

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

/* ✅ forces CTA to bottom of card consistently */
.service-card .cta-btn {
  margin-top: auto;
}
.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;
}

  
/* ABOUT US SECTION - Blue Background Version */
.about-us {
  padding: 80px 30px;
  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;
  }
  .about-left {
    margin-top: -50px;
  }
.about-image {
  position: relative;
  text-align: center;   /* centers inline images horizontally */
}

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

}

/* 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-top: -20px;
  margin-bottom: 10px;
}

.contact-call {
  margin-top: -25px;   /* move it up slightly */
  margin-bottom: 18px;
  font-weight: 600;
  font-size: 22px;
  text-align: center;
}

.contact-call a {
  text-decoration: none; /* remove underline */
  color: inherit;        /* use same color as surrounding text */
}

.contact-call a:hover {
  text-decoration: none; /* no underline on hover either */
  color: inherit;
}
.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;
  }
}
/* MOBILE – make Select same size as inputs */
@media (max-width: 600px) {
  .contact select {
    height: 50px;
    background: #ffffff;
    color: #333;
    border-radius: 10px;
    border: none;

    appearance: none;
    -webkit-appearance: none;
  }
}
/* ZIP row left align */
.zip-row {
  text-align: left;
}
/* ===== HERO MOTTO: STOP HEIGHT JUMPING ===== */
.hero-motto {
  /* keep your current styling */
  overflow: hidden;          /* prevents height expansion */
  box-sizing: border-box;

  /* FIXED HEIGHT DESKTOP (1 line) */
  height: 44px;              /* tweak 42–48 if you want */
}

/* Keep the slogan constrained to ONE line on desktop */
#heroSlogan {
  display: -webkit-box;      /* enables line clamp */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;     /* 1 line on desktop */
  overflow: hidden;
  line-height: 1.2;
  max-width: 100%;
}
/* ================================
   CONTACT SUCCESS (934) - NO CONFLICTS
   ================================ */

   .contact-success934{
    margin-top: 12px;
  }
  
  /* The card itself */
  .contact-success-card934{
    background: #ffffff;
    border: 1px solid rgba(95,143,184,0.25);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.14);
    width: min(680px, calc(100% - 26px)); /* ALWAYS fits screen */
    margin: 0 auto;
  
    padding: 26px 22px;
    text-align: center;
    color: #1f2937;
  }
  
  /* Title */
  .success-title934{
    margin: 0 0 8px 0;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0f172a;
  }
  
  .success-title934 i{
    color: #5f8fb8; /* clean blue check */
    font-size: 26px;
  }
  
  /* Main text */
  .contact-success-text934{
    margin: 0 0 14px 0;
    font-size: 17px;
    line-height: 1.6;
    color: #1f2937;
  }
  
  /* Coupon box */
  .success-coupon934{
    margin: 14px auto 10px auto;
    padding: 14px 14px;
    border-radius: 16px;
    border: 2px dashed rgba(95,143,184,0.45);
    background: rgba(95,143,184,0.06);
  }
  
  .coupon-badge934{
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.4px;
    background: rgba(95,143,184,0.18);
    color: #2b5f86;
    margin-bottom: 8px;
  }
  
  .coupon-text934{
    font-size: 14.5px;
    line-height: 1.45;
    margin-bottom: 10px;
    color: #1f2937;
  }
  
  /* Store CTA */
  .success-store934{
    margin: 12px auto 14px auto;
  }
  
  .success-store-title934{
    font-weight: 900;
    font-size: 16px;
    margin-bottom: 4px;
    color: #0f172a;
  }
  
  .success-store-sub934{
    font-size: 14px;
    line-height: 1.4;
    color: #334155;
    margin-bottom: 10px;
  }
  
  /* Button base */
  .btn934{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
    width: 100%;
    padding: 14px 14px;
  
    border-radius: 14px;
    font-weight: 900;
    font-size: 15.5px;
  
    text-decoration: none;
    cursor: pointer;
    user-select: none;
  
    border: 2px solid rgba(95,143,184,0.85); /* ALWAYS BORDER */
    background: #ffffff;                     /* default white */
    color: #2b5f86;
  
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  }
  
  .btn934:hover{
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(0,0,0,0.12);
  }
  
  /* Blue primary button */
  .btn934-primary{
    background: #5f8fb8;
    color: #ffffff;
    border-color: #5f8fb8;
  }
  
  .btn934-primary:hover{
    background: #4f83ad;
    border-color: #4f83ad;
  }
  
  /* Outline button */
  .btn934-outline{
    background: #ffffff;
    color: #2b5f86;
  }
  
  /* Buttons grid (desktop: 2 columns, mobile: 1 column) */
  .success-actions934{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 10px;
  }
  
  /* Make the “Shop Devices” button not fight spacing */
  .success-store934 .btn934{
    max-width: 520px;
    margin: 0 auto;
  }
  
  /* Make the coupon button not fight spacing */
  .success-coupon934 .btn934{
    max-width: 520px;
    margin: 0 auto;
  }
  /* ================================
   934 HOTFIX PATCH (PASTE LAST)
   ================================ */

/* Always include borders/padding in width calculations */
#contactSuccess934,
#contactSuccess934 * {
  box-sizing: border-box;
}

/* Give the whole success block breathing room from the top */
#contactSuccess934.contact-success934{
  padding-top: 22px;   /* fixes "too close to top" */
  padding-bottom: 24px;
}

/* Card should never touch screen edges on mobile */
#contactSuccess934 .contact-success-card934{
  margin: 0 auto;
}

/* MOBILE: even more room + side padding */
@media (max-width: 600px){
  #contactSuccess934.contact-success934{
    padding-top: 34px; /* more space from top on mobile */
    padding-left: 12px;
    padding-right: 12px;
  }

  #contactSuccess934 .contact-success-card934{
    width: 100% !important;
    padding: 20px 16px !important;  /* more inner padding */
  }
}

/* --- FORCE BUTTON LOOKS (overrides any global button/a styles) --- */
#contactSuccess934 .btn934{
  -webkit-appearance: none;
  appearance: none;

  border: 2px solid rgba(95,143,184,0.85) !important; /* force border */
  background: #ffffff !important;                      /* force background */
  color: #2b5f86 !important;

  width: 100%;
  max-width: 520px;             /* stops "crazy long" */
  margin-left: auto;
  margin-right: auto;

  min-height: 48px;             /* consistent button height */
  padding: 12px 14px !important;
  border-radius: 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  line-height: 1.2;
  white-space: normal;          /* allow wrap */
  word-break: break-word;       /* prevent overflow */
}

/* primary button forced */
#contactSuccess934 .btn934.btn934-primary{
  background: #5f8fb8 !important;
  border-color: #5f8fb8 !important;
  color: #ffffff !important;
}

/* keep outline truly outlined */
#contactSuccess934 .btn934.btn934-outline{
  background: #ffffff !important;
  border-color: rgba(95,143,184,0.85) !important;
  color: #2b5f86 !important;
}

/* --- ACTION GRID FIX: 2 cols desktop, 1 col mobile --- */
#contactSuccess934 .success-actions934{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  justify-items: center;
  margin-top: 14px;
}

/* Make the 3rd button span BOTH columns cleanly */
#contactSuccess934 #contactAnother934{
  grid-column: 1 / -1;
}

/* Mobile: stack all buttons */
@media (max-width: 600px){
  #contactSuccess934 .success-actions934{
    grid-template-columns: 1fr;
  }

  #contactSuccess934 #contactAnother934{
    grid-column: auto;
  }
}

/* Optional: add spacing between sections so it feels "longer" */
#contactSuccess934 .success-coupon934{ margin-top: 18px; }
#contactSuccess934 .success-store934{ margin-top: 18px; }
  /* MOBILE FIXES */
  @media (max-width: 600px){
    .contact-success-card934{
      padding: 18px 14px;
      border-radius: 16px;
    }
  
    .success-title934{
      font-size: 28px;
    }
  
    .contact-success-text934{
      font-size: 15.5px;
    }
  
    .success-actions934{
      grid-template-columns: 1fr; /* stack */
    }
  
    .btn934{
      font-size: 15px;
      padding: 13px 12px;
      border-radius: 14px;
    }
  
    .success-coupon934{
      padding: 12px 12px;
    }
  }
.zip-row input {
  text-align: left;
}
/* ZIP + Service Preference row */
.zip-service-row{
  display:flex;
  align-items:flex-start;
  gap:18px;
  flex-wrap:wrap;
}

/* ZIP left aligned */
.zip-row{
  text-align:left;
  flex: 0 0 240px;      /* keeps ZIP a consistent width on desktop */
}

.zip-row input{
  width:100%;
  text-align:left;
}
@media (max-width: 380px){
  #contactSuccess934 .success-title934{ font-size: 24px; }
  #contactSuccess934 .contact-success-text934{ font-size: 14.5px; }
}
/* Service preference sits to the right */
.service-pref{
  flex: 1 1 320px;
  text-align:left;
  
}

.service-pref-title{
  margin: 6px 0 10px 0;
  font-weight: 700;
  color:#fff;
  font-size:15px;
}

/* Radio group layout */
.service-pref-radios{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

/* Each choice */
.radio-choice{
  display:inline-flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  user-select:none;
  color:#fff;
  font-weight:600;
  font-size:14px;
}

/* Hide native radio */
.radio-choice input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

/* Custom circle */
.radio-dot{
  width:16px;
  height:16px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,0.85);
  display:inline-block;
  position:relative;
  flex: 0 0 16px;
}

/* Filled dot when checked */
.radio-choice input:checked + .radio-dot::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:8px;
  height:8px;
  border-radius:50%;
  transform:translate(-50%, -50%);
  background:#ffd700; /* gold */
}

/* Optional: highlight the label text slightly when checked */
.radio-choice input:checked ~ .radio-text{
  color:#ffd700;
}

/* Hover feel */
.radio-choice:hover .radio-dot{
  border-color:#ffd700;
}

/* Mobile: stack zip then radios, make zip full width */
@media (max-width: 600px){
  .zip-service-row{ flex-direction:column; }
  .zip-row{ flex: 1 1 auto; width:100%; }
}

/* MOBILE – tighten Service Preference spacing */
@media (max-width: 600px){

  .service-pref{
    margin-bottom: -250px;   /* pulls it upward */
    
  }

  .service-pref-title{
    margin-top: 6px;
    margin-bottom: 6px;  /* reduce title gap */
    font-size: 14px;
  }

  .service-pref-radios{
    gap: 12px;           /* tighter spacing between options */
  }

  .radio-choice{
    font-size: 13px;     /* slightly smaller text */
  }

  .radio-dot{
    width: 14px;
    height: 14px;        /* smaller circle */
  }

}

/* Brands & Service Areas Section */
.brands-service-section {
  background: #fefefe;
  padding: 10px 50px;
  color: #000000;
  font-family: Arial, sans-serif;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;

  box-shadow: 0 -3px 8px rgba(0, 0, 0, 0.1);
}

.brands-service-section .container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap; /* ✅ FIX: prevent weird wrap gaps */
}
/* 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 left heading */
.brands-column .note {
  font-size: 14px;
  font-style: italic;
  color: #6f6f6f;
  margin-bottom: 18px;
}

/* Service Areas Circle Image (UNCHANGED) */
.column-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #5f8fb8;
}

/* Grid for left column cards */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px 26px;
}

/* Make each category feel like a card (aesthetic upgrade) */
.brand-category {
  background: #ffffff;
  border: 1px solid rgba(95, 143, 184, 0.18);
  border-radius: 16px;

  padding: 14px 14px 12px 14px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-category:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.10);
}

.brand-category h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Lists */
.brand-category ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.brand-category ul li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  margin-bottom: 7px;
  line-height: 1.25;
}

/* Diamond bullets */
.brand-category ul li::before {
  content: "\f219";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #5f8fb8;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 9px;
  line-height: 1;
}

/* Hide gem at end of headings (UNCHANGED behavior) */
.brands-column h2 i,
.areas-column h2 i {
  color: #dfdfdf;
  font-size: 22px;
  display: none;
}

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

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

.areas-grid span {
  background: rgba(95, 143, 184, 0.10);
  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);
  transform: scale(1.05);
}

/* 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;
  }
.areas-column {

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

@media (max-width: 768px) {
#contactSuccess934.contact-success934{
  padding: 26px 0 60px 0;     /* top + bottom space */
}


}



/* FOOTER */
footer {
  background: #333;
  color: white;
  padding: 50px 20px 20px 20px;
  font-family: Arial, sans-serif;
}
footer {
  background: linear-gradient(
    to bottom,
    #5d5d5d 0%,
    #3a3f45 35%,
    #2f3439 100%
  );
}
.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;
  }
}
/* NEW: About "What You Can Expect" section */
.about-promise47 {
  background: #f4f8fc;
  border-radius: 20px;
  padding: 55px 22px;
  margin-bottom: 80px;
  text-align: center;
}

.about-promise47 h2 {
  color: #5f8fb8;
  font-size: 34px;
  margin-bottom: 22px;
}

.about-promise-grid47 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-promise-item47 {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px 22px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  text-align: left;
}

.about-promise-item47 h3 {
  color: #1a73e8;
  margin-bottom: 10px;
  font-size: 18px;
}

.about-promise-item47 p {
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}


/* ============================= */
/* 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;
    padding-bottom: 10px;
}

/* 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: 260px;          /* ✅ uniform height on desktop */
  border-radius: 16px;
  object-fit: cover;      /* ✅ crops evenly */
  object-position: center;
  display: block;
}
/* 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;
  }
}

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

.promo-banner {
  position: fixed;
  bottom: 16px;
  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: 20px;
    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;
  }
}








/* ========================= */
/* APPOINTMENTS / BOOKING 92 */
/* ========================= */

.booking-page92 .booking-hero-sub92{
  margin: 10px auto 0;
  max-width: 900px;
  font-size: 15px;
  opacity: 0.95;
}

.booking-wrap92{
  margin-top: 40px;
}

/* Stepper */
.booking-stepper92{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin: 10px auto 30px;
  padding: 0 10px;
}

.step92{
  display:flex;
  align-items:center;
  gap:10px;
  color:#2b2b2b;
  font-weight:600;
}

.step-dot92{
  width:30px;
  height:30px;
  border-radius:999px;
  background:#e9eef3;
  display:flex;
  align-items:center;
  justify-content:center;
  border:2px solid #cfdbe6;
  font-size:14px;
}

.step-active92 .step-dot92{
  background:#5f8fb8;
  border-color:#5f8fb8;
  color:#fff;
}

.step-line92{
  height:2px;
  width:80px;
  background:#d8e2ec;
  border-radius:999px;
}

.booking-grid92{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items:start;
}

@media (max-width: 980px){
  .booking-grid92{
    grid-template-columns: 1fr;
  }
}

/* Cards */
.booking-card92{
  background:#fff;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  overflow:hidden;
}

.booking-card-header92{
  padding: 18px 18px 14px;
  border-bottom:1px solid #eef2f6;
}

.booking-card-header92 h2{
  margin:0;
  font-size: 20px;
  color:#111;
}

.booking-card-header92 p{
  margin:6px 0 0;
  font-size: 13px;
  color:#333;
  opacity:0.9;
}

.booking-section92{
  padding: 16px 18px 4px;
  border-bottom: 1px solid #f0f3f6;
}

.booking-section92 h3{
  margin: 0 0 12px;
  font-size: 14px;
  color:#111;
}

.booking-row92{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 620px){
  .booking-row92{
    grid-template-columns: 1fr;
  }
}

.booking-field92{
  display:flex;
  flex-direction:column;
  gap: 6px;
  margin-bottom: 12px;
}

.booking-field92 label{
  font-size: 13px;
  font-weight: 600;
  color:#111;
}

.booking-field92 input,
.booking-field92 select,
.booking-field92 textarea{
  border: 1px solid #dbe5ef;
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 14px;
  outline:none;
  background:#fff;
}

.booking-field92 textarea{
  resize: vertical;
  min-height: 110px;
}

.booking-field92 input:focus,
.booking-field92 select:focus,
.booking-field92 textarea:focus{
  border-color:#5f8fb8;
  box-shadow: 0 0 0 3px rgba(95,143,184,0.15);
}

.booking-zip92{
  max-width: 180px;
}

@media (max-width: 620px){
  .booking-zip92{
    max-width: 100%;
  }
}

.field-hint92{
  font-size: 12px;
  color:#444;
  opacity:0.85;
}

.field-error92{
  color:#b00020;
  font-size: 12px;
  min-height: 14px;
}

/* Checkboxes */
.check92{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size: 13px;
  color:#111;
  margin: 10px 0;
}

.check92 input{
  margin-top: 3px;
}

.check92 a{
  color:#5f8fb8;
  text-decoration: underline;
}

/* Actions */
.booking-actions92{
  display:flex;
  justify-content:flex-end;
  gap: 10px;
  padding: 14px 18px 18px;
}

.btn92{
  border: none;
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 700;
  cursor:pointer;
}

.btn-primary92{
  background:#5f8fb8;
  color:#fff;
}

.btn-primary92:hover{
  filter: brightness(0.97);
}

.btn-ghost92{
  background:#f1f4f8;
  color:#111;
}

/* Preview */
.booking-preview92{
  position: sticky;
  top: 90px;
}

@media (max-width: 980px){
  .booking-preview92{
    position: static;
  }
}

.preview-card92{
  background:#fff;
  border-radius:14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  overflow:hidden;
}

.preview-media92{
  height: 180px;
  background:#eef4fa;
}

.preview-media92 img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.preview-body92{
  padding: 14px 16px 16px;
}

.preview-body92 h3{
  margin: 0 0 8px;
  font-size: 18px;
  color:#111;
}

.preview-body92 p{
  margin: 0 0 12px;
  color:#222;
  opacity:0.92;
  font-size: 13px;
  line-height: 1.55;
}

.preview-badges92{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.badge92{
  background:#f1f4f8;
  border: 1px solid #e2e8f0;
  border-radius:999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 700;
  color:#111;
}

.badge-strong92{
  background: rgba(95,143,184,0.12);
  border-color: rgba(95,143,184,0.28);
}

.preview-box92{
  border: 1px solid #eef2f6;
  border-radius: 12px;
  padding: 12px;
  margin-top: 10px;
  background:#fff;
}

.preview-box-title92{
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}

.preview-list92{
  margin:0;
  padding-left: 18px;
  color:#111;
  font-size: 13px;
  line-height: 1.65;
}

.preview-subdesc92{
  margin:0;
  font-size: 13px;
  line-height: 1.6;
}

.preview-note92{
  margin-top: 12px;
  font-size: 12px;
  color:#333;
  opacity:0.9;
}

/* Checkout */
.booking-checkout92{
  margin-top: 24px;
}

.checkout-grid92{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 16px 18px 18px;
}

@media (max-width: 980px){
  .checkout-grid92{
    grid-template-columns: 1fr;
  }
}

.checkout-summary92 h3,
.checkout-payment92 h3{
  margin: 0 0 12px;
  font-size: 16px;
}

.summary-row92{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #eef2f6;
  font-size: 13px;
}

.summary-row92 span{
  color:#333;
  opacity:0.9;
}

.summary-row92 strong{
  color:#111;
}

.summary-box92{
  margin-top: 12px;
  border: 1px solid #eef2f6;
  border-radius: 12px;
  padding: 12px;
}

.summary-title92{
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 8px;
}

.payment-placeholder92{
  border: 1px dashed #cfdbe6;
  border-radius: 12px;
  padding: 12px;
  background:#fbfdff;
}

.stripe-mock92{
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin-bottom: 10px;
}

.stripe-row92{
  height: 38px;
  border-radius: 10px;
  background:#eef3f8;
  border: 1px solid #e2e8f0;
}

.stripe-row92.short92{
  width: 55%;
}

.payment-note92{
  margin: 0;
  font-size: 12px;
  color:#333;
  opacity:0.9;
}

/* Success */
.success-card92{
  background:#fff;
  border-radius:14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 18px;
  margin-top: 18px;
}

.success-card92 h2{
  margin:0 0 8px;
  font-size: 20px;
}

.success-card92 p{
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.6;
}

.code-box92{
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px;
  background:#f8fbff;
  font-weight: 800;
}

.success-actions92{
  margin-top: 12px;
  display:flex;
  justify-content:flex-end;
}
.credit-applied92 {
  color: #b24a4a;       /* subtle muted red */
  font-weight: 500;     /* slightly emphasized */
}
/* Only make the LABEL red */
.summary-row92.same-day92 span {
  color: #b91c1c; /* subtle red */
  font-weight: 500;
}

/* Keep the dollar amount normal */
.summary-row92.same-day92 strong {
  color: #111; /* default black */
  font-weight: 600;
}
.upgradeReplaceSection{
  padding: 70px 18px;
  background: #f5f6f8;
}

.upgradeReplaceWrap{
  max-width: 1050px;
  margin: 0 auto;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 28px 18px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.upgradeReplaceWrap h2{
  margin: 0 0 10px 0;
  font-size: 28px;
}

.upgradeReplaceSub{
  margin: 0 0 18px 0;
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.9;
}

.upgradeReplaceCards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.upgradeCard{
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 18px;
}

.upgradeCard h3{
  margin: 0 0 8px 0;
  font-size: 18px;
}

.upgradeCard p{
  margin: 0 0 14px 0;
  font-size: 14.5px;
  line-height: 1.45;
  opacity: 0.9;
}

.upgradeBtn{
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.12);
  transition: transform 0.12s ease, opacity 0.12s ease;
}

.upgradeBtn:hover{
  transform: translateY(-1px);
  opacity: 0.95;
}

.upgradeBtn.primary{
  background: #111;
  color: #fff;
}

.upgradeBtn.secondary{
  background: #111;
  color: #fff;
}

.upgradeReplaceFootnote{
  margin-top: 18px;
  font-size: 13.5px;
  opacity: 0.85;
}

@media (max-width: 860px){
  .upgradeReplaceCards{
    grid-template-columns: 1fr;
  }
}

/* Make the whole booking area feel tighter + less tall */
.booking-wrap92 { margin-top: 28px; }
.booking-card-header92 { padding: 16px 16px 12px; }
.booking-section92 { padding: 14px 16px 4px; }
.booking-actions92 { padding: 12px 16px 16px; }

.booking-grid92{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items:start;
}

@media (max-width: 980px){
  .booking-grid92{ grid-template-columns: 1fr; }
}

/* Panels: only one visible at a time */
.booking-panels92{ margin-top: 10px; }
.booking-panel92{ animation: fadeIn92 160ms ease; }
@keyframes fadeIn92{
  from{ opacity:0; transform: translateY(6px); }
  to{ opacity:1; transform: translateY(0); }
}

/* Preview: slightly smaller media */
.preview-media92{ height: 160px; }

/* Checkout total emphasis */
.summary-total92{
  border-bottom: none !important;
  padding-bottom: 0;
}
.summary-total92 strong{
  font-size: 15px;
}

/* Coupon UI */
.coupon-box92{
  border: 1px solid #eef2f6;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  margin-bottom: 12px;
}
.coupon-label92{
  display:block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}
.coupon-row92{
  display:flex;
  gap: 10px;
  align-items:center;
}
.coupon-row92 input{
  flex:1;
  border: 1px solid #dbe5ef;
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 14px;
  outline:none;
}
.coupon-row92 input:focus{
  border-color:#5f8fb8;
  box-shadow: 0 0 0 3px rgba(95,143,184,0.15);
}

/* Stripe box */
.paymentElementBox92{
  padding:14px;
  border:1px solid #e6e6e6;
  border-radius:12px;
  background:#fff;
  margin-bottom:14px;
  min-height: 54px;
}

/* Success as full screen card area */
.success-full92{
  display:flex;
  justify-content:center;
  padding: 10px 0 30px;
}
.success-card92{
  max-width: 720px;
  width: 100%;
}


/* ============================= */
/* AUTH OVERLAY + ACCOUNT (APPEND) */
/* ============================= */

.auth-overlay93 {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.auth-backdrop93 {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.auth-modal93 {
  position: relative;
  width: min(520px, calc(100vw - 22px));
  max-height: calc(100vh - 22px);
  margin: 11px auto;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.10);
}

.auth-close93 {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: none;
  background: rgba(0,0,0,0.06);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.auth-header93 {
  padding: 18px 18px 10px 18px;
  background: linear-gradient(180deg, rgba(61,155,223,0.14), rgba(61,155,223,0.02));
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.auth-header93 h2 {
  margin: 0;
  font-size: 22px;
}

.auth-sub93 {
  margin: 6px 0 0 0;
  font-size: 13px;
  opacity: 0.85;
}

.auth-body93 {
  padding: 16px 18px 18px 18px;
  overflow: auto;
}

.auth-panel-title93 {
  margin: 0 0 12px 0;
  font-size: 18px;
}

.auth-row93 {
  margin-bottom: 12px;
}

.auth-label93 {
  display: block;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 6px;
  color: rgba(0,0,0,0.75);
}

.auth-input93 {
  width: 100%;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.15);
  outline: none;
  font-size: 14px;
}

.auth-input93:focus {
  border-color: rgba(61,155,223,0.9);
  box-shadow: 0 0 0 4px rgba(61,155,223,0.18);
}

.auth-grid93 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 520px) {
  .auth-grid93 { grid-template-columns: 1fr; }
}

.auth-btn93 {
  width: 100%;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  cursor: pointer;
  font-weight: 800;
  font-size: 14px;
}

.auth-primary93 {
  background: #3d9bdf;
  color: #fff;
  border-color: rgba(0,0,0,0.08);
}

.auth-error93 {
  background: rgba(220, 53, 69, 0.12);
  color: rgba(220, 53, 69, 0.95);
  border: 1px solid rgba(220, 53, 69, 0.22);
  padding: 10px 10px;
  border-radius: 10px;
  margin: 10px 0;
  font-weight: 700;
  font-size: 13px;
}

.auth-note93 {
  font-size: 12px;
  opacity: 0.85;
  margin: 8px 0 12px 0;
}

.auth-footer93 {
  margin-top: 12px;
  font-size: 13px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.auth-footer93 a {
  color: #3d9bdf;
  font-weight: 800;
  text-decoration: none;
}

.auth-footer-sep93 {
  opacity: 0.6;
}

.auth-demo-code93 {
  background: rgba(61,155,223,0.10);
  border: 1px dashed rgba(61,155,223,0.55);
  padding: 10px 12px;
  border-radius: 10px;
  margin: 10px 0 12px 0;
  font-size: 13px;
}

/* ============================= */
/* MY ACCOUNT PAGE (APPEND) */
/* ============================= */

.account-grid93 {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 18px;
}

@media (max-width: 980px) {
  .account-grid93 { grid-template-columns: 1fr; }
}

.account-card93 {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  padding: 16px;
}

.account-card-head93 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.account-card-head93 h2 {
  margin: 0;
  font-size: 20px;
}

.account-lines93 {
  margin-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 10px;
}

.account-line93 {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}

.account-line93 span {
  opacity: 0.75;
  font-weight: 700;
}

.account-badges93 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.acct-badge93 {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(61,155,223,0.10);
  border: 1px solid rgba(61,155,223,0.22);
  font-weight: 800;
  font-size: 12px;
}

.account-actions93 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}

.account-btn93 {
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}

.account-primary93 {
  background: #3d9bdf;
  color: #fff;
  border-color: rgba(0,0,0,0.08);
}

.account-ghost93 {
  background: rgba(0,0,0,0.06);
}

.account-disclaimer93 {
  margin-top: 12px;
  font-size: 12px;
  opacity: 0.75;
  line-height: 1.35;
}

/* tabs */
.account-tabs93 {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.acct-tab93 {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  cursor: pointer;
  font-weight: 900;
  font-size: 13px;
}

.acct-tab-active93 {
  background: rgba(61,155,223,0.14);
  border-color: rgba(61,155,223,0.28);
}

.acct-title93 {
  margin: 0 0 6px 0;
  font-size: 18px;
}

.acct-muted93 {
  margin: 0 0 12px 0;
  opacity: 0.78;
  font-size: 13px;
}

.acct-empty93 {
  background: rgba(0,0,0,0.04);
  border: 1px dashed rgba(0,0,0,0.14);
  padding: 14px;
  border-radius: 14px;
}

.acct-box93 {
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 14px;
  padding: 12px;
}

.acct-box-row93 {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.10);
}

.acct-box-row93:last-child {
  border-bottom: none;
}

.auth-footer-split93{
  justify-content: space-between;
  flex-wrap: wrap;
}

.auth-footer-left93{
  display:flex;
  gap:6px;
  align-items:center;
  flex-wrap: wrap;
}

.auth-forgot93{
  margin-left:auto;
  font-weight: 900;
}
.auth-google93 {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.14);
  font-weight: 900;
}
.auth-google93:hover {
  background: rgba(0,0,0,0.03);
}

/* spacing + layout */
.auth-google93{
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.14);
  font-weight: 900;
}

/* small, clean icon container */
.g-icon93{
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Google word highlight (brand-ish, not loud) */
.g-text93{
  color: #f57c00; /* warm Google-adjacent orange */
}

/* hover polish */
.auth-google93:hover{
  background: rgba(0,0,0,0.03);
  transform: translateY(-1px);
}

/* Password eye toggle */
.pw-wrap93{
  position: relative;
}

.pw-wrap93 .auth-input93{
  padding-right: 44px; /* room for eye button */
}

.pw-toggle93{
  position:absolute;
  right:10px;
  top:50%;
  transform: translateY(-50%);
  width:34px;
  height:34px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.9);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}

.pw-toggle93:hover{
  background: rgba(0,0,0,0.03);
}
.pw-toggle93 i,
#acctGreeting93 i {
  color: #000;
  font-size: 14px;
}/* ================= FIND US SECTION ================= */

.findus-section{
  background:#f1f5f9;
  border-radius:22px;
  padding:60px 30px;
  text-align:center;
}
.findus-title{
  margin:0;
  font-size:36px;
  font-weight:900;
  color:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

.stars i{
  color:#f4b400; /* Google gold */
  font-size:22px;
}

/* Slight glow for premium feel */
.stars{
  display:inline-flex;
  gap:4px;
  text-shadow:0 2px 6px rgba(244,180,0,0.4);
}
.findus-wrap{
  max-width:1200px;
  margin:0 auto;
}

.findus-title{
  margin:0;
  font-size:34px;
  font-weight:900;
  color:#5a89b3; /* black */
}

.findus-sub{
  margin:14px auto 44px;
  color:#475569;           /* more visible than before */
  font-size:17px;          /* slightly larger */
  font-weight:600;         /* subtle but clearer */
  max-width:720px;
}

/* 3 cards centered */
.findus-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap:50px; /* MUCH more breathing room */
  align-items:start;
  justify-items:center;
  padding:0 40px; /* space from edges on desktop */
}
/* column wrapper so label sits above card */
.findus-col{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}

/* Platform labels above cards */
.platform-label{
  font-weight:900;
  font-size:22px;
  letter-spacing:0.2px;
}

.platform-label.google{ color:#000000; }
.platform-label.yelp{ color:#d32323; }
.platform-label.fb{ color:#1877f2; }

/* ================= GLASS BLACK CARD ================= */

.profile-card{
  text-decoration:none;
  color:inherit;
  width:100%;
  max-width:380px;
  padding:26px 16px;
  border-radius:20px;

  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;

  background:rgba(0,0,0,0.69);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);

  box-shadow:
  0 15px 35px rgba(0,0,0,0.25),
  inset 0 0 0 1px rgba(255,255,255,0.04);

  transition:transform .25s ease, box-shadow .25s ease;
}

.profile-card:hover{
  transform:translateY(-4px);
  box-shadow:0 28px 70px rgba(0,0,0,0.45);
}

/* Image */
.profile-image{
  width:300px;
  height:250px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.08);
}

.profile-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Text */
.profile-content{ text-align:center; }

.profile-name{
  font-size:18px;
  font-weight:900;
  color:#fff;
  margin-bottom:6px;
}

.profile-meta{
  font-size:13px;
  color:rgba(255,255,255,0.72);
  margin-bottom:16px;
}

/* Buttons */
.profile-cta{
  display:inline-block;
  font-weight:800;
  font-size:14px;
  color:#fff;
  padding:10px 20px;
  border-radius:10px;
  transition:all .25s ease;
}

/* Google green */
.profile-cta.google{
  background:#000000;
}
.profile-card:hover .profile-cta.google{
  background:#000000;
  box-shadow:0 10px 25px rgba(52,168,83,0.35);
}

/* Yelp red */
.profile-cta.yelp{
  background:#d32323;
}
.profile-card:hover .profile-cta.yelp{
  background:#b91c1c;
  box-shadow:0 10px 25px rgba(211,35,35,0.35);
}

/* Facebook blue */
.profile-cta.fb{
  background:#1877f2;
}
.profile-card:hover .profile-cta.fb{
  background:#0f5ed1;
  box-shadow:0 10px 25px rgba(24,119,242,0.35);
}

/* ================= MOBILE ================= */
@media (max-width: 900px){
  .findus-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .profile-card{
    max-width:92%;
  }

  .profile-image{
    width:100%;
    max-width:260px;
    height:180px;
  }
}

/* Make placeholder text lighter + less bold */
.auth-input93::placeholder {
  color: rgba(0, 0, 0, 0.15);  /* lighter gray */
  font-weight: 400;            /* remove bold feel */
}

/* Safari */
.auth-input93::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.15);
  font-weight: 400;
}

/* Edge */
.auth-input93:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.15);
  font-weight: 400;
}

.acct-right93{
  display:flex;
  align-items:center;
  gap:10px;
}

.acct-edit93{
  width:36px;
  height:36px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.04);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}

.acct-edit93:hover{
  background: rgba(0,0,0,0.06);
}

.acct-inline93{
  width: min(260px, 52vw);
  padding:10px 10px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,0.15);
  font-size:14px;
}

.acct-inline93:focus{
  border-color: rgba(61,155,223,0.9);
  box-shadow: 0 0 0 4px rgba(61,155,223,0.18);
  outline:none;
}
