/* ===== Global Site Styles ===== */

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
}

/* ===== Scope of Appointment Checkbox Fix ===== */

.soa-products {
    margin-top: 20px;
}

.soa-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 20px;
    color: #ffffff;
    cursor: pointer;
}

.soa-row input[type="checkbox"] {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.soa-row span {
    line-height: 1.4;
}

/* ================= MOBILE OPTIMIZATION ================= */
@media (max-width: 768px) {

  body {
      font-size: 18px;
      line-height: 1.6;
  }

  .container, .card {
      padding: 18px !important;
  }

  img {
      max-width: 100%;
      height: auto;
  }

  table {
      width: 100% !important;
      display: block;
  }

  td {
      display: block;
      width: 100% !important;
  }

  button, .pdf-button {
      width: 100%;
      text-align: center;
      font-size: 18px;
  }

  h1 { font-size: 26px; }
  h2 { font-size: 22px; }

  ul {
      padding-left: 20px;
  }body {
  margin: 0;
  font-family: Arial, sans-serif;
}
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

.hero img {
  max-width: 100%;
  height: auto;
}

table {
  width: 100% !important;
}
ul {
  padding-left: 1.2rem;
}

li {
  margin-bottom: 0.6rem;
}
.video-thumb {
  max-width: 100%;
  height: auto;
  float: right;
  margin: 0 0 15px 20px;
  cursor: pointer;
}
.content-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}
.nav-btn {
  max-width: 192px;
  height: auto;
}

.social-container {
  text-align: center;
  margin: 20px auto 30px auto;
  padding: 15px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 8px;
  padding: 10px 18px;
  font-size: 14px;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  background: linear-gradient(145deg, #1b4f5f, #0f2f38);
  box-shadow: 0 0 8px rgba(0,0,0,0.6),
              inset 0 0 6px rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}

.social-btn img {
  width: 18px;
  height: 18px;
}

.glass-social {
  display: inline-block;
  margin: 6px;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  background: linear-gradient(to bottom, #1f6d7a, #0e3a44);
  box-shadow: 
    inset 0 1px 0 rgba(255,255,255,0.3),
    0 3px 6px rgba(0,0,0,0.6);
}

.glass-social:hover {
  color: #ffcc00;
  box-shadow: 
    inset 0 1px 0 rgba(255,255,255,0.5),
    0 0 10px rgba(255,204,0,0.7);
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(255, 204, 0, 0.6),
              inset 0 0 8px rgba(255,255,255,0.25);
}

/* Brand accents */
.facebook:hover {
  background: linear-gradient(145deg, #3b5998, #2d4373);
}

.linkedin:hover {
  background: linear-gradient(145deg, #0077b5, #005582);
}

.yelp:hover {
  background: linear-gradient(145deg, #d32323, #a61b1b);
}

.social-icons img {
  width: 56px; /* adjust as you shrink */
  height: 56px;
  margin: 6px;
  border-radius: 12px;

  /* Depth */
  box-shadow:
    0 6px 12px rgba(0,0,0,0.6),          /* drop shadow */
    inset 0 1px 2px rgba(255,255,255,0.25); /* glass shine */

  transition: all 0.25s ease;
}

/* Hover = LIFE */
.social-icons img:hover {
  transform: translateY(-4px) scale(1.05);

  box-shadow:
    0 10px 18px rgba(0,0,0,0.8),
    0 0 12px rgba(255, 204, 0, 0.7),   /* gold glow */
    inset 0 1px 3px rgba(255,255,255,0.4);
}

.social-icons a {
  display: inline-block;
  position: relative;
}

.social-icons a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 60%;
  height: 10px;
  transform: translateX(-50%);
  background: rgba(255, 204, 0, 0.4);
  filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-icons a:hover::after {
  opacity: 1;
}