

/* =========================================================
   Leak Safeguard Solutions — style.css (FINAL, STABLE)
   ========================================================= */

/* -------------------------
   GLOBAL BASE
   ------------------------- */
:root{
  --ink:#222;
  --muted:#444;
  --brand:#0a4f8f;
  --brand-dark:#1f4d6b;
  --border:#d6d6d6;
  --panel:#f8f8f8;
  --highlight:#ffeb99; /* FAQ hover highlight */
}

*{ box-sizing:border-box; }

html{ font-size:18px; }

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  line-height:1.55;
  color:var(--ink);
  background:#fff;
}

img{ max-width:100%; height:auto; }

/* Default links */
a{ color:var(--brand); }
a:hover{ text-decoration:underline; }

main{
  max-width:900px;
  margin:0 auto;
  padding:16px;
}

/* -------------------------
   TYPOGRAPHY
   ------------------------- */
h1{
  font-size:1.8rem;
  line-height:1.25;
  margin:0 0 .6em;
  color:var(--brand-dark);
}

h2{
  font-size:1.4rem;
  margin:0 0 .6em;
  color:var(--brand-dark);
}

p, li{
  font-size:1rem;
  margin:0 0 .75em;
}

.lead{
  font-size:1.1rem;
  line-height:1.6;
  color:var(--muted);
}

/* -------------------------
   HEADER / LOGO
   ------------------------- */
.site-header{
  display:flex;
  padding:24px 18px 8px;
}

.logo-wrap{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}

.site-logo{
  height:90px;
  width:auto;
}

@media (min-width:768px){
  .site-logo{ height:120px; }
}
/* -------------------------
   NAV BAR (CLEAN + STABLE)
   ------------------------- */

.top-nav{
  display:flex;
  justify-content:center;
  gap:10px;
  padding:12px 10px;
  background:var(--panel);
  flex-wrap:wrap;
  margin:10px 0 14px;
}

.top-nav a{
  padding:8px 16px;
  border:1px solid #ccc;
  border-radius:6px;
  background:#fff;
  color:#2c2c2c;
  text-decoration:none;
  font-weight:500;
  transition:0.25s;
}

.top-nav a:hover{
  background:#e9f2fb;
  color:var(--brand);
  border-color:var(--brand);
  text-decoration:none;
}

/* ACTIVE PAGE */
.top-nav a.active{
  background:var(--brand);
  color:#fff;
  border-color:var(--brand);
  font-weight:700;
}

/* -------------------------
   BUTTONS
   ------------------------- */
.btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:8px;
  border:1px solid #bbb;
  font-weight:600;
  text-decoration:none;
  transition:.25s;
}

.btn:hover{
  background:#e9f2fb;
  border-color:var(--brand);
  text-decoration:none;
}

.btn.primary{
  background:var(--brand);
  color:#fff;
  border-color:var(--brand);
}

.btn.primary:hover{
  background:var(--brand-dark);
  border-color:var(--brand-dark);
}

.btn.secondary{
  background:#fff;
  color:var(--brand);
  border-color:var(--brand);
}

/* =========================================================
   CONTACT STRIP — CALLOUT + TOP-CONTACT (UNIFIED)
   ========================================================= */
.callout,
.top-contact{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 18px;
  text-align:center;
}

/* Turn links into buttons (ONLY in callout / top-contact) */
.callout a,
.top-contact a{
  display:inline-block;
  padding:8px 14px;
  border:1px solid #bbb;
  border-radius:8px;
  background:#fff;
  color:var(--brand-dark);
  font-weight:600;
  text-decoration:none;
  transition:.25s;
}

.callout a:hover,
.top-contact a:hover{
  background:#e9f2fb;
  color:var(--brand);
  border-color:var(--brand);
  text-decoration:none;
}

/* Hide pipe separator if you use <span class="sep">|</span> */
.callout .sep,
.top-contact .sep{
  display:none;
}

/* -------------------------
   FAQ LINK HIGHLIGHT (INLINE LINKS IN TEXT)
   FIX: increased specificity + padding so hover is obvious
   ------------------------- */
main a.faq-link{
  font-weight:700;
  text-decoration:underline;
  padding:2px 4px;
  border-radius:4px;
  transition:background-color .2s ease, color .2s ease, text-decoration .2s ease;
}

main a.faq-link:hover,
main a.faq-link:focus{
  background-color:var(--highlight);
  color:#000;
  text-decoration:none; /* overrides global a:hover underline */
  outline:none;
}



/* -------------------------
   PRICING GRID
   ------------------------- */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:16px;
}

.pricing-box{
  border:1px solid var(--border);
  border-radius:12px;
  padding:16px;
  background:#fff;
  box-shadow:0 1px 6px rgba(0,0,0,.06);
}

.price{
  font-size:1.15rem;
  color:var(--brand);
}

/* -------------------------
   FAQ
   ------------------------- */
.faq-item{
  border:1px solid var(--border);
  border-radius:10px;
  background:#fff;
  margin:10px 0;
}

.faq-item summary{
  padding:14px;
  cursor:pointer;
  font-weight:600;
}

.faq-item summary::after{
  content:"＋";
  float:right;
}

.faq-item[open] summary::after{
  content:"−";
}

.faq-body{
  padding:0 14px 14px;
}

/* -------------------------
   CONTACT PAGE
   ------------------------- */
.page.contact{
  max-width:820px;
  margin:0 auto;
  padding:2.25rem 1.25rem;
}

.page.contact .contact-block{
  border:1px solid #ddd;
  border-radius:10px;
  padding:1.25rem;
  margin-bottom:2rem;
}
/* =========================
   PREMIUM CONTACT FORM
   ========================= */

.contact-form {
  max-width: 520px;
  margin: 30px auto;
  padding: 28px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border: 1px solid #e6e6e6;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--brand-dark);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  padding: 10px 12px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  font-size: 1rem;
  background: #fafafa;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

/* Focus glow */
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(10,79,143,0.15);
}

/* Textarea resize control */
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Button refinement */
.contact-form .btn.primary {
  margin-top: 10px;
  padding: 12px 18px;
  font-size: 1rem;
  border-radius: 10px;
}
/* =========================
   FORM TRUST + HONEYPOT
   ========================= */

/* Reassurance + privacy lines */
.form-reassurance,
.form-privacy {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-privacy {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-privacy .lock {
  color: var(--brand);
}

/* Honeypot — invisible to humans */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-trust{
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}


/* -------------------------
   RESPONSIVE
   ------------------------- */
@media (max-width:900px){
  .pricing-grid{ grid-template-columns:1fr; }
}

@media (max-width:700px){
  html{ font-size:20px; }
  .site-logo{ height:90px; }
}
body { outline: 8px solid red !important; }
