/* ==============================================
   ROOT VARIABLES
   ============================================== */
:root {
  --primary: #003366;
  --cta:     #e6007e;  /* pink for checks */
}

/* ==============================================
   GLOBAL RESET & BODY
   ============================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
}
body {
  font-family: Arial, sans-serif;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ==============================================
   NAVBAR
   ============================================== */
.navbar-custom {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.navbar-custom .navbar-brand img {
  height: 90px;
}
.navbar-custom .nav-link {
  color: var(--primary);
  font-weight: 500;
  padding: .75rem 1rem;
}
/* normal hover on any link */
.navbar-custom .nav-link:hover {
  color: var(--cta);
}
/* ensure active link is same blue when idle */
.navbar-custom .nav-link.active {
  color: var(--primary) !important;
}
/* new: allow active link to go pink on hover too */
.navbar-custom .nav-link.active:hover {
  color: var(--cta) !important;
}

/* CTA button in navbar */
.btn-cta {
  background: var(--cta) !important;
  color: #fff !important;
  font-weight: 500;
  border: none !important;
}
.btn-cta:hover {
  background: #c4006f !important;
}

/* MOBILE LOGO TWEAK */
@media (max-width: 576px) {
  .navbar-custom .navbar-brand img {
    height: 50px;
  }
}

/* ==============================================
   ANNOUNCEMENT BAR
   ============================================== */
.announcement {
  background: var(--cta);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  font-weight: 500;
}
.announcement .marquee {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 70s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ==============================================
   FORCE WHITE BACKGROUND FOR ALL SECTIONS
   ============================================== */
main,
section {
  background-color: #fff !important;
}

/* ==============================================
   HERO / “Our Services”
   ============================================== */
.hero {
  padding: 4rem 0;
}
.hero-text h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: left;
}
.hero-text ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-text ul li {
  position: relative;
  padding-left: 1.8em;   /* space for the check */
  margin-bottom: 0.6em;
  line-height: 1.4;
  color: var(--primary);
}
.hero-text ul li::before {
  content: "✓";
  color: var(--cta);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* ==============================================
   ADDITIONAL INFO (pink headings)
   ============================================== */
.additional-info p {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--cta);
  margin-bottom: 0;   /* override any extra spacing */
}

/* ==============================================
   CHAT WIDGET
   ============================================== */
.chat-button {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background: var(--cta);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .75rem 1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 1000;
}
.chat-box {
  display: none;
  flex-direction: column;
  position: fixed;
  bottom: 160px;
  right: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 300px;
  max-height: 600px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  background: #fff;
  z-index: 1000;
}
.chat-box-header {
  background: var(--cta);
  color: #fff;
  padding: .5rem;
  text-align: center;
  position: relative;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.chat-box-header button {
  position: absolute;
  top: .2rem;
  right: .5rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #fff;
  cursor: pointer;
}
.chat-box-messages {
  flex: 1;
  padding: .5rem;
  overflow-y: auto;
  font-size: .9rem;
  background: #fafafa;
}
.chat-box-input {
  display: flex;
  border-top: 1px solid #ccc;
}
.chat-box-input input {
  flex: 1;
  border: none;
  padding: .5rem;
}
.chat-box-input button {
  background: var(--cta);
  color: #fff;
  border: none;
  padding: 0 1rem;
}


/* ==============================================
   FOOTER
   ============================================== */
footer {
  background: var(--cta);
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: auto;
}
