:root {
  --force-yellow: #fff8dc;
  --force-gold: #ffd700;
  --force-red: #cc0000;
  --force-hover-red: #ff4c4c;
  --font-main: "Montserrat", sans-serif;
}
/* ===============================
				GLOBAL RESET & BASE STYLES
				=============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat-regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
header h1 {
  color: var(--force-red);
  text-shadow: 0 0 4px rgba(255, 76, 76, 0.2);
}

header img.logo {
  width: 100px;
  height: auto;
  max-height: 100px;
  object-fit: contain;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background-color: #fffbea;
  color: #333;
  padding-top: 60px;
}

img {
  max-width: 100%;
  height: auto;
}

.sticky-bar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; /* Optional: allows wrapping on small screens */
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1em;
  padding: 12px 20px;
  background: linear-gradient(90deg, #fff8dc, #ffe680);
  color: #333;
  font-weight: 600;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.sticky-bar:hover {
  background: linear-gradient(90deg, #ffe680, #ffd700);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.sticky-bar a {
  color: #cc0000;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.sticky-bar a:hover {
  color: #ff4c4c;
  text-shadow: 0 0 3px rgba(255, 76, 76, 0.3);
  text-decoration: underline;
}

nav {
  background: #fff8dc;
  padding: 10px 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  font-weight: 600;
}
nav a {
  margin: 0 15px;
  color: #cc0000;
  text-decoration: none;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 2px solid transparent;
}
nav a:hover {
  color: #ff4c4c;
  border-bottom: 2px solid #ff4c4c;
}

header {
  background: linear-gradient(135deg, #ffd700, #fff8dc);
  color: #333;
  padding: 50px 20px;
  text-align: center;
  box-shadow: inset 0 -2px 10px rgba(0, 0, 0, 0.1);
}
header img.logo {
  width: 100px;
  height: auto;
  max-height: 100px;
  object-fit: contain;
}
/* Header Branding Styles */
h1 {
  font-size: 2em;
  font-weight: 700;
  margin: 6px 0;
  text-align: center;
  text-shadow: 0.5px 0.5px 2px rgba(255, 255, 255, 0.5);
  color: #333;
  font-family: "Montserrat", sans-serif;
}

.caption {
  font-size: 1.1em;
  font-weight: 600;
  color: #cc0000; /* FORCE Red */
  margin: 4px 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.tagline {
  font-size: 1.1em;
  font-weight: 600;
  color: #333; /* Neutral black */
  margin: 4px 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
.helpline {
  font-size: 1.1em;
  font-weight: 700;
  color: #cc0000; /* FORCE Red */
  margin: 6px 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.helpline a {
  color: #cc0000;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.helpline a:hover {
  color: #ff4c4c;
  text-shadow: 0 0 3px rgba(255, 76, 76, 0.3);
  text-decoration: underline;
}

.call-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: linear-gradient(145deg, #fff8dc, #ffd700);
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  border: 2px solid #ff4c4c;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.call-button:hover {
  background: #ff4c4c;
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 76, 76, 0.4);
}

section {
  padding: 40px 20px;
  text-align: center;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.tip-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tip-box h3 {
  color: #cc0000;
  margin-bottom: 15px;
  font-size: 1.2em;
}

.tip-box ul {
  list-style: none;
  padding-left: 0;
}

.tip-box li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 28px;
}

.tip-box li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 1em;
  line-height: 1;
}

footer {
  padding: 20px;
  font-size: 0.9em;
  color: #555;
  text-align: center;
  background: #fff8dc;
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.05);
}

.float-icon {
  position: fixed;
  bottom: 20px;
  z-index: 999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  background: #ffd700;
}
.call-icon {
  right: 80px;
}
.whatsapp-icon {
  right: 20px;
}
.float-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
}
#goTopBtn {
  position: fixed;
  bottom: 90px; /* Above call/WhatsApp icons */
  right: 80px; /* Avoids overlap */
  z-index: 999;
  background-color: #cc0000; /* FORCE red */
  border: none;
  border-radius: 50%;
  padding: 12px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  display: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

#goTopBtn:hover {
  background-color: #ff4c4c;
  box-shadow: 0 0 12px rgba(255, 76, 76, 0.4);
}

#goTopBtn svg {
  fill: #fff;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6)); /* Golden aura glow */
}

#goTopBtn:hover svg {
  filter: drop-shadow(
    0 0 10px rgba(255, 215, 0, 0.8)
  ); /* Brighter glow on hover */
}

.menu-toggle {
  display: none;
  background-color: #cc0000;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 1.2em;
  font-weight: bold;
  width: 100%;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 1001;
}
@media (max-width: 600px) {
  /* Header adjustments */
  .sticky-bar {
    flex-direction: column;
    font-size: 0.95em;
    padding: 8px 10px;
    text-align: center;
  }
  header {
    padding: 30px 15px;
  }

  h1 {
    font-size: 1.8em;
  }

  .logo {
    width: 80px;
    max-height: 80px;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
  }

  /* Main content */
  main {
    padding: 20px 15px;
  }

  section {
    padding: 20px 15px;
  }

  section li {
    font-size: 0.95em;
    padding: 12px;
  }

  p {
    font-size: 1em;
    line-height: 1.6;
  }

  /* Buttons */
  .call-button,
  .whatsapp-button {
    width: 90%;
    font-size: 1em;
    padding: 10px 20px;
  }

  /* Footer */
  footer {
    font-size: 0.85em;
    padding: 15px;
  }

  /* Floating icons */
  .float-icon {
    width: 45px;
    height: 45px;
  }

  .call-icon {
    right: 80px;
    bottom: 20px;
  }

  .whatsapp-icon {
    right: 20px;
    bottom: 20px;
  }

  /* Go to top button */
  #goTopBtn {
    right: 80px;
    bottom: 90px;
  }

  /* Navigation */
  nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu.active {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #fff8dc;
    padding: 10px 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .mobile-menu a {
    color: #cc0000;
    text-decoration: none;
    padding: 10px 0;
    font-weight: 600;
    border-bottom: 1px solid #ffd700;
  }

  .mobile-menu a:hover {
    color: #ff4c4c;
  }
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #fff8dc;
  padding: 10px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.mobile-menu a {
  color: #cc0000;
  text-decoration: none;
  padding: 10px 0;
  font-weight: 600;
  border-bottom: 1px solid #ffd700;
}

.mobile-menu a:hover {
  color: #ff4c4c;
}
.tips-grid ul {
  list-style-type: none;
  padding-left: 0;
}
