/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.5;
  font-size: 16px;
}
body.products-page .hero {
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('productspage.jpg') center center/cover no-repeat;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
header {
  background-color: #d3d3d3;
  padding: 20px 0;
}



.content ul {
  margin: 10px 0;
  padding-left: 20px;
}

.content li {
  margin-bottom: 8px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.collapsible {
  background: linear-gradient(145deg, #b71c1c, #7f0000); /* metallic red */
  color: #fff;
  cursor: pointer;
  padding: 15px 25px;
  width: 100%;
  border: none;
  border-radius: 10px;
  text-align: left;
  font-size: 20px;
  font-weight: bold;
  transition: background 0.3s, color 0.3s, transform 0.2s;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.collapsible:hover {
  background: linear-gradient(145deg, #c0c0c0, #e0e0e0); /* silver gradient */
  color: #222; /* dark text for contrast */
  transform: translateY(-2px); /* subtle lift */
}

.collapsible:after {
  content: ' ▼';
  float: right;
  font-size: 18px;
  transition: transform 0.3s;
}

.collapsible.active:after {
  content: ' ▲';
}

.collapsible:hover {
  background-color: #d62839; /* darker red */
  transform: translateY(-2px); /* subtle lift */
}

.collapsible:after {
  content: ' ▼';
  float: right;
  font-size: 18px;
  transition: transform 0.3s;
}

.collapsible.active:after {
  content: ' ▲';
}



.content ul {
  margin: 10px 0;
  padding-left: 20px;
}

.content li {
  margin-bottom: 8px;
}

.logo {
  max-width: 150px;
  height: auto;
}

/* Navigation buttons - metallic red / silver hover */
.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-list li a {
  display: inline-block;
  padding: 10px 22px;
  font-weight: 600;
  color: white;
  background: linear-gradient(145deg, #b30000 0%, #660000 60%, #ff0000 100%);
  border-radius: 8px;
  text-decoration: none;
  box-shadow:
    inset 0 2px 5px rgba(255, 255, 255, 0.6),
    0 4px 6px rgba(179, 0, 0, 0.7);
  transition: background 0.4s ease, box-shadow 0.4s ease, color 0.4s ease;
}

.nav-list li a:hover {
  background: linear-gradient(145deg, #e0e0e0 0%, #a8a8a8 60%, #dcdcdc 100%);
  color: #222;
  box-shadow:
    inset 0 2px 5px rgba(255, 255, 255, 0.9),
    0 4px 6px rgba(150, 150, 150, 0.8);
}

/* Hero Section */
.hero {
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('productspage.jpg') center center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
  text-shadow: 0 0 10px rgba(0,0,0,0.7);
}
/* Existing general hero style stays as is */
.hero {
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('trigger.jpg') center center/cover no-repeat;
  /* other styles... */
}
body.safety-page .hero {
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('safestudy.jpg') center center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
  text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

/* New override for products.html only */
body.products-page .hero {
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('productspage.jpg') center center/cover no-repeat;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero CTA button with metallic red / silver hover */
.cta-button {
  display: inline-block;
  background: linear-gradient(145deg, #b30000 0%, #660000 60%, #ff0000 100%);
  color: white;
ay;
  font-weight: 700;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow:
    inset 0 2px 5px rgba(255, 255, 255, 0.6),
    0 4px 8px rgba(179, 0, 0, 0.7);
  transition: background 0.4s ease, box-shadow 0.4s ease, color 0.4s ease, transform 0.2s ease;
}

.cta-button:hover {
  background: linear-gradient(145deg, #e0e0e0 0%, #a8a8a8 60%, #dcdcdc 100%);
  color: #222;
  box-shadow:
    inset 0 2px 5px rgba(255, 255, 255, 0.9),
    0 4px 8px rgba(150, 150, 150, 0.8);
  transform: scale(1.05);
}

/* Value Proposition Section */
.value-prop {
  background: white;
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.value-prop h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
}

.benefits-list {
  list-style: none;
  flex: 1 1 400px;
  font-size: 1.1rem;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.benefits-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

/* Simple bullet icons */
.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #b30000;
  font-weight: bold;
  font-size: 1.2rem;
  top: 2px;
}

.guide-image {
  flex: 0 0 250px;
  text-align: center;
}

.guide-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(179, 0, 0, 0.3);
}

/* Email Signup Section */
.email-signup {
  background: #eee;
  padding: 60px 20px;
  text-align: center;
}

.email-signup h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.email-signup form {
  margin: 20px 0;
}

.email-signup input[type="email"] {
  padding: 12px 15px;
  font-size: 1rem;
  border: 2px solid #ccc;
  border-radius: 6px;
  width: 280px;
  max-width: 90%;
  margin-right: 12px;
  transition: border-color 0.3s ease;
}

.email-signup input[type="email"]:focus {
  border-color: #b30000;
  outline: none;
}

.email-signup button {
  background: #b30000;
  color: white;
  font-weight: 700;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.email-signup button:hover {
  background: #ff4d4d;
}

.privacy-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
}

/* Social Proof Section */
.social-proof {
  background: white;
  padding: 40px 20px;
  text-align: center;
  font-style: italic;
  color: #555;
}

.social-icons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 40px;
  font-weight: 700;
}

.social-icons a {
  text-decoration: none;
  color: #b30000;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ff4d4d;
}

.social-icons .logo {
  width: 60px;      /* Smaller icon size */
  height: auto;
  margin: 0 8px;    /* Even spacing left and right */
  vertical-align: middle;
}

@media (min-width: 768px) {
  .social-icons .logo {
    width: 60px;   /* Slightly bigger on desktops */
  }
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;       /* Controls space between icons */
  margin-top: 15px;
}

/* Footer */
footer {
  background: #111;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  max-width: 100px;
  height: auto;
}

.footer-nav {
  list-style: none;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}

.footer-nav li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-nav li a:hover {
  color: #b30000;
}
.caliber-button {
  background: linear-gradient(145deg, #b22222, #8a1b1b); /* HitRite red */
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  margin-top: 12px;
  display: inline-block;
  transition: transform 0.2s, background 0.2s;
}

.caliber-button:hover {
  background: linear-gradient(145deg, #8a1b1b, #b22222);
  transform: scale(1.05);
}
/* Base button styling */
.cta-button {
  display: inline-block;
  padding: 12px 22px;
  margin: 8px 8px 8px 0;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  font-family: Arial, sans-serif;
  transition: all 0.2s ease;
  cursor: pointer;
}

/* View PDF button */
.preview-button {
  background-color: #222;      /* dark background */
  color: #fff;                 /* white text */
  border: 2px solid #c8102e;  /* HitRite red border */
}

.preview-button:hover {
  background-color: #c8102e;   /* red on hover */
  color: #fff;
  transform: translateY(-2px);
}

/* Download PDF button */
.download-button {
  background-color: #c8102e;  /* HitRite red background */
  color: #fff;
  border: 2px solid #222;     /* dark border */
}

.download-button:hover {
  background-color: #8b0a1e;  /* darker red on hover */
  color: #fff;
  transform: translateY(-2px);
}
/* Center everything inside the value-prop section */
.value-prop .container {
  text-align: center; /* centers headings, paragraph, and buttons */
}

.value-prop .cta-button {
  display: inline-block;
  margin: 8px auto; /* centers buttons and adds spacing between them */
}
/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #222; /* or white depending on header bg */
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background-color: #222;
    position: absolute;
    top: 70px; /* adjust based on header height */
    right: 0;
    width: 200px;
    padding: 10px;
    border-radius: 8px;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    gap: 15px;
  }

  .nav-list li a {
    color: #fff;
    padding: 10px;
    display: block;
  }

  .hamburger {
    display: block;
  }
}
/* Fix mobile hamburger dropdown for safety page */
@media (max-width: 768px) {
  /* Ensure nav-menu is on top of other content */
  .nav-menu {
    position: absolute; /* already set, but double-check */
    top: 70px;          /* adjust based on header height */
    right: 0;
    width: 200px;
    background-color: #222;
    border-radius: 8px;
    padding: 10px;
    z-index: 9999;       /* higher than other sections */
  }

  /* Make sure links are visible and clickable */
  .nav-list li a {
    color: #fff !important;
    font-weight: 600;
    padding: 10px;
    display:
/* Ensure header and mobile dropdown are on top */
header.site-header {
  position: relative;
  z-index: 1000;
}

.nav-menu {
  z-index: 1001; /* dropdown above header and hero content */
}
/* Collapsible Buttons - now just headings */
.safety-topics .collapsible {
  background: none;
  color: #b71c1c;
  cursor: default;
  font-size: 20px;
  font-weight: bold;
  border: none;
  border-radius: 0;
  text-align: left;
  box-shadow: none;
  padding: 0;
  position: relative;
}

.safety-topics .collapsible:after {
  content: ; /* removes the arrow */
}


.safety-topics .content {
  background-color: #f5f5f5;
  border-radius: 0 0 10px 10px;
  max-height: 0;       /* start collapsed */
  overflow: hidden;    /* hide content initially */
  padding-top: 0;
  padding-bottom: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}


.safety-topics .content ul {
  margin: 10px 0;
  padding-left: 20px;
}

.safety-topics .content li {
  margin-bottom: 8px;
}

.content ul {
  margin: 10px 0;
  padding-left: 20px;
}

.content li {
  margin-bottom: 8px;
}

/* When expanded, JS sets max-height and padding */
/* === Safety page collapsibles (scoped + overrides) === */
.safety-topics .collapsible {
  background: linear-gradient(145deg, #b71c1c, #7f0000);
  color: #fff;
  cursor: pointer;
  padding: 15px 25px;
  width: 100%;
  border: none;
  border-radius: 10px;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  transition: background 0.3s, color 0.3s, transform 0.2s;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  display: block;
  position: relative;
}
.safety-topics .collapsible:hover {
  background: linear-gradient(145deg, #c0c0c0, #e0e0e0);
  color: #222;
  transform: translateY(-2px);
}
.safety-topics .collapsible::after {
  content: ' ▼';
  position: absolute;
  right: 20px;
  font-size: 18px;
  transition: transform 0.3s;
}
.safety-topics .collapsible.active::after {
  content: ' ▲';
}

/* Panels */

.safety-topics .content.open {
  padding: 15px 20px; /* expanded state: normal spacing */
}


.safety-topics .content ul { margin: 10px 0; padding-left: 20px; }
.safety-topics .content li { margin-bottom: 8px; }
