:root{
  --bg:#F9FAF9;
  --panel:#ffffff;
  --border:rgba(17,24,39,0.12);

  --text:#0f172a;
  --muted:rgba(15,23,42,0.72);

  --accent:#19c37d;
  --accent2:#c8921e;

  --max:1100px;
  --radius:16px;

  --shadow:0 14px 34px rgba(0,0,0,0.08);
  --shadow2:0 10px 22px rgba(0,0,0,0.07);
}


*{box-sizing:border-box}
html,body{margin:0; padding:0}
body{
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.55;
  color:var(--text);
  background:var(--bg);
}

a{color:inherit}
img{max-width:100%; display:block}

/* Keep your existing layout class */
.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 18px;
}
/* Alias so your upgraded contact section works */
.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 18px;
}

/* Top bar */
.top-bar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(249,250,249,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 14px;
}
.logo img{
  height:44px;
  width:auto;
}
.menu-btn{
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  border-radius:12px;
  padding:10px 12px;
  font-size:18px;
  cursor:pointer;
  box-shadow: var(--shadow2);
}

/* Slide menu */
#slideMenu{
  position:fixed;
  top:66px;
  right:14px;
  width:min(320px, calc(100% - 28px));
  background:rgba(255,255,255,.98);
  border:1px solid var(--border);
  border-radius:14px;
  padding:10px;
  display:none;
  z-index:60;
  box-shadow: var(--shadow);
}
#slideMenu.open{display:block}
#slideMenu a{
  display:block;
  padding:12px 12px;
  border-radius:12px;
  text-decoration:none;
  color:rgba(15,23,42,.92);
}
#slideMenu a:hover{
  background:rgba(25,195,125,.10);
}

/* Buttons */
.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:14px;
  font-weight:900;
  text-decoration:none;
  border:1px solid transparent;
  background:var(--accent);
  color:#062414;
  cursor:pointer;
  transition:transform .12s ease, opacity .12s ease;
  box-shadow: 0 12px 28px rgba(25,195,125,.20);
}
.btn-primary:hover{transform:translateY(-1px); opacity:.97}

.btn-ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:14px;
  font-weight:800;
  text-decoration:none;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  transition:transform .12s ease, opacity .12s ease;
  box-shadow: var(--shadow2);
}
.btn-ghost:hover{transform:translateY(-1px); opacity:.97}

/* Hero */
.hero{
  padding:72px 0 54px;
  background:
    radial-gradient(800px 420px at 20% 20%, rgba(25,195,125,.18), transparent 58%),
    radial-gradient(700px 380px at 85% 40%, rgba(200,146,30,.12), transparent 58%);
}
.hero-watermark{height:0}
.hero h1{
  font-size:clamp(32px, 4.2vw, 48px);
  margin:0 0 10px;
  letter-spacing:-.02em;
}
.hero p{
  max-width:720px;
  color:var(--muted);
  margin:0 0 18px;
  font-size:18px;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}
.hero-call{
  margin-top:14px;
  color:rgba(15,23,42,.80);
}
.hero-call a{
  color:var(--text);
  text-decoration:none;
  border-bottom:1px solid rgba(15,23,42,.22);
}

/* Service area strip */
.service-area{
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background:rgba(15,23,42,.03);
  padding:12px 0;
  text-align:center;
  color:rgba(15,23,42,.86);
}

/* Sections */
.section{padding:64px 0;}
.section h2{
  margin:0 0 8px;
  font-size:28px;
}
.section-intro{
  margin:0 0 18px;
  color:var(--muted);
}

/* Why Trinity */
.why-trinity{padding:40px 0 10px;}
.why-inner{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px;
  box-shadow: var(--shadow2);
}
.why-inner p{
  color:var(--muted);
  margin:10px 0 0;
}
.badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}
.badges span{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(25,195,125,.10);
  border:1px solid rgba(25,195,125,.18);
  color:rgba(15,23,42,.88);
  font-weight:800;
  font-size:.92rem;
}

/* Service blocks */
.service-block{
  margin:0 0 16px;
  padding:18px;
  border-radius:var(--radius);
  background:var(--panel);
  border:1px solid var(--border);
  box-shadow: var(--shadow2);
}
.service-block.alt{background:rgba(15,23,42,.02);}
.service-block h3{margin:0 0 10px; font-size:20px;}
.service-block ul{margin:0; padding-left:18px; color:rgba(15,23,42,.88);}
.service-block li{margin:6px 0}

/* Reviews */
.reviews-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:16px;
  margin-top:18px;
}
.review-card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: var(--shadow2);
}
.stars{
  color:var(--accent2);
  font-weight:900;
  letter-spacing:2px;
  margin-bottom:10px;
}
.review-text{
  color:rgba(15,23,42,.92);
  margin:0 0 10px;
}
.review-name{
  margin:0;
  color:var(--muted);
  font-weight:800;
}

/* Gallery */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:14px;
  margin-top:18px;
}
.gallery-grid img{
  width:100%;
  height:auto;
  display:block;
  
  
  border-radius:18px;
  border:1px solid var(--border);
  background:#fff;
  
  
  box-shadow: var(--shadow2);
}

/* ===== CONTACT SECTION (UPGRADED) ===== */
.contact{
  padding: 70px 18px;
  background: rgba(25,195,125,.10);
  border-top: 1px solid rgba(25,195,125,.18);
}

.contact-inner{
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.contact h2{
  font-size: 34px;
  margin: 0 0 10px 0;
}

.contact-sub{
  font-size: 18px;
  opacity: 0.95;
  margin: 0 auto 26px auto;
  max-width: 700px;
  color: rgba(15,23,42,.80);
}

.contact-cta{
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto 26px auto;
}

.call-btn,
.text-btn{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 18px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: transform 160ms ease, filter 160ms ease;
}

.call-btn{
  background: var(--accent);
  color: #062414;
  box-shadow: 0 14px 34px rgba(25,195,125,.25);
}

.text-btn{
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow2);
}

.call-btn:hover,
.text-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.01);
}

.trust{
  max-width: 920px;
  margin: 0 auto;
  padding: 22px 18px;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow2);
}

.trust-line{
  margin: 0 0 16px 0;
  opacity: 0.95;
  color: rgba(15,23,42,.88);
}

.reviews{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 10px 0 16px 0;
}

.review{
  text-align: left;
  padding: 14px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow2);
}

.review-text{
  margin: 0 0 10px 0;
  line-height: 1.35;
  color: rgba(15,23,42,.92);
}

.review-name{
  margin: 0;
  opacity: 0.85;
  font-weight: 900;
  font-size: 14px;
  color: rgba(15,23,42,.70);
}

.contact-service-area{
  margin: 0;
  opacity: 0.9;
  color: rgba(15,23,42,.80);
  font-weight: 800;
}

/* Footer */
.site-footer{
  border-top:1px solid var(--border);
  background:rgba(15,23,42,.04);
  padding:22px 0;
  margin-top:40px;
}
.footer-inner{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:space-between;
  align-items:center;
}
.footer-brand{font-weight:900;}
.footer-sub{color:var(--muted); font-size:14px;}
.footer-sub a{color:var(--text); text-decoration:none; border-bottom:1px solid rgba(15,23,42,.22);}

/* Mobile */
@media (max-width:520px){
  .logo img{height:38px}
  .hero{padding:56px 0 44px}
  .hero p{font-size:16px}
}
@media (max-width: 900px){
  .reviews{ grid-template-columns: 1fr; }
  .contact h2{ font-size: 30px; }
}
.brand-strip{
  background:#f4f7f5;
  border-bottom:1px solid rgba(0,0,0,.08);
  text-align:center;
  padding:18px 12px;
}

.brand-strip h1{
  margin:0;
  font-size:26px;
  font-weight:900;
  color:#0F3A22;
  letter-spacing:-.02em;
}

.brand-strip p{
  margin:4px 0 0;
  font-size:15px;
  font-weight:600;
  color:#3d5a4a;
}
.brand-divider{
  width:60px;
  height:3px;
  margin:12px auto 0;
  background:#2bd66a; /* Trinity green */
  border-radius:999px;
}
.why-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.why-point h4 {
  color: #0b2e13;
  font-size: 18px;
  margin-bottom: 8px;
}

.why-point p {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
}
.why-trinity .why-logo {
  text-align: center;
  margin: 40px auto 35px; /* more space above & below */
}
/* ===== LINK UNDERLINE FIX (site-wide) ===== */
a, a:visited {
  text-decoration: none !important;
}

a:hover, a:focus, a:active {
  text-decoration: none !important;
}

/* iOS Safari: stop auto-underlines on phone/email links */
a[x-apple-data-detectors],
a[x-apple-data-detectors]:hover,
a[x-apple-data-detectors]:active,
a[x-apple-data-detectors]:visited {
  text-decoration: none !important;
  color: inherit !important;
}

/* Extra: tel/sms links */
a[href^="tel"],
a[href^="sms"] {
  text-decoration: none !important;
}


.why-trinity .why-logo img {
  width: 320px;     /* BIG but still professional */
  max-width: 100%;
  height: auto;
  opacity: 1;

}

/* Remove underlines site-wide */
a, a:visited, a:hover, a:active, a:focus {
  text-decoration: none !important;
}

/* iOS Safari: stop forced styling on phone/email/text links */
a[x-apple-data-detectors],
a[href^="tel"],
a[href^="sms"],
a[href^="mailto"] {
  text-decoration: none !important;
  color: inherit !important;
}
/* Force-remove underlines everywhere */
a, a:visited, a:hover, a:focus, a:active {
  text-decoration: none !important;
}

/* Kill iOS Safari auto-styling for detected links */
a[x-apple-data-detectors],
a[x-apple-data-detectors]:hover,
a[x-apple-data-detectors]:active,
a[x-apple-data-detectors]:visited {
  text-decoration: none !important;
  color: inherit !important;
}

/* Extra force for phone/text/email links */
a[href^="tel:"],
a[href^="sms:"],
a[href^="mailto:"] {
  text-decoration: none !important;
}
/* === FORCE REMOVE LINK UNDERLINES (iOS + ALL browsers) === */
a,
a:visited,
a:hover,
a:active {
  text-decoration: none !important;
  color: inherit;
}

/* === iOS SAFARI AUTO-LINK FIX (phone numbers, addresses) === */
a[x-apple-data-detectors],
a[x-apple-data-detectors]:visited,
a[x-apple-data-detectors]:hover,
a[x-apple-data-detectors]:active {
  text-decoration: none !important;
  color: inherit !important;
}
.phone-link {
  text-decoration: none;
  color: inherit;
  font-weight: 600;
}
/* ===== FORCE REMOVE UNDERLINES (iOS + all links) ===== */

/* kill all underline/border styles on links everywhere */
a, a:link, a:visited, a:hover, a:active, a:focus {
  text-decoration: none !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  -webkit-text-decoration: none !important;
  text-decoration-skip-ink: none !important;
}

/* target phone/email/sms links specifically */
a[href^="tel:"], a[href^="sms:"], a[href^="mailto:"] {
  text-decoration: none !important;
  border-bottom: 0 !important;
  -webkit-text-decoration: none !important;
  color: inherit !important;
}

/* iOS Safari data-detectors (the stuff that auto-links) */
a[x-apple-data-detectors],
a[x-apple-data-detectors]:link,
a[x-apple-data-detectors]:visited,
a[x-apple-data-detectors]:hover,
a[x-apple-data-detectors]:active {
  text-decoration: none !important;
  border-bottom: 0 !important;
  -webkit-text-decoration: none !important;
  color: inherit !important;
}
/* Make Quick Estimate form larger and more readable */
#quick-estimate .contact-inner {
  max-width: 900px;
}

#quick-estimate .contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

#quick-estimate .contact-form textarea {
  grid-column: span 2;
}

#quick-estimate .contact-form button {
  grid-column: span 2;
}
@media (max-width: 768px) {
  #quick-estimate .contact-form button {
    width: 100%;
  }
}
/* FINAL FIX: make Quick Estimate form stack cleanly on mobile */
@media (max-width: 768px) {
  #quick-estimate .contact-form {
    display: block !important;
  }

  #quick-estimate .contact-form label {
    display: block;
    margin-bottom: 12px;
    text-align: left;
  }

  #quick-estimate .contact-form input,
  #quick-estimate .contact-form textarea,
  #quick-estimate .contact-form button {
    width: 100% !important;
    box-sizing: border-box;
    display: block;
  }

  #quick-estimate .contact-form textarea {
    min-height: 120px;
  }

  #quick-estimate .contact-form button {
    margin-top: 8px;
  }
}
/* CLEAN UP + BIGGER: Quick Estimate form on mobile */
#quick-estimate .contact-form{
  max-width: 700px;
  margin: 18px auto 0;
}

/* Inputs: bigger + nicer */
#quick-estimate .contact-form input,
#quick-estimate .contact-form textarea{
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;       /* prevents iPhone zoom + makes readable */
  padding: 14px 14px;
  border-radius: 12px;
}

/* Button: full width + bigger */
#quick-estimate .contact-form button{
  width: 100%;
  box-sizing: border-box;
  padding: 16px 16px;
  font-size: 17px;
  border-radius: 14px;
  margin-top: 10px;
}

/* Force one-column on phones (this removes the side-by-side confusion) */
@media (max-width: 768px){
  #quick-estimate .contact-form{
    display: block !important;
  }
  #quick-estimate .contact-form label{
    display: block;
    width: 100%;
    margin: 0 0 14px 0;
  }
}
#quick-estimate .contact-inner{
  padding-top: 10px;
  padding-bottom: 10px;
}
/* FINAL OVERRIDE — force Quick Estimate form to single column */
#quick-estimate form {
  display: block !important;
}

#quick-estimate form label {
  width: 100% !important;
  float: none !important;
  display: block !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

#quick-estimate form input,
#quick-estimate form textarea {
  width: 100% !important;
  box-sizing: border-box !important;
  font-size: 16px;
  padding: 14px;
}

#quick-estimate form button {
  width: 100% !important;
  padding: 16px;
  font-size: 17px;
  margin-top: 12px;
}
/* Estimate Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(92vw, 520px);
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 600;
  z-index: 9999;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast--show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(-2px);
}

.toast-icon {
  font-size: 18px;
  line-height: 1;
}

.toast--success {
  background: #e7f6ee;
  color: #0f5132;
  border: 1px solid rgba(15,81,50,0.2);
}

.toast--error {
  background: #fdecea;
  color: #842029;
  border: 1px solid rgba(132,32,41,0.2);
}

.toast--sending {
  background: #eef4ff;
  color: #1f3b7a;
  border: 1px solid rgba(31,59,122,0.2);
}
/* =========================================================
   TRINITY THEME (GREEN + GOLD) — SITEWIDE
   Paste near the bottom of styles.css
========================================================= */

/* 1) Brand tokens */
:root{
  --trinity-green: #0C7C59;     /* primary */
  --trinity-green-dark: #075A41;/* hover/darker */
  --trinity-mint: #F4F9F6;      /* soft background tint */
  --trinity-gold: #D4A017;      /* accent */
  --ink: #1F2937;               /* text */
  --muted: #6B7280;             /* secondary text */
  --border: #E5E7EB;            /* light border */
  --ring: rgba(212,160,23,.35); /* gold focus ring */
  --shadow: 0 10px 24px rgba(0,0,0,.07);
}

/* 2) Base page feel (still primarily white) */
html, body { color: var(--ink); }
body{
  background: linear-gradient(180deg, #ffffff 0%, var(--trinity-mint) 140%);
}

/* 3) Links (kills “default blue + underline” vibe) */
a{
  color: var(--trinity-green);
  text-decoration: none;
}
a:hover{ color: var(--trinity-green-dark); text-decoration: underline; }
a:focus-visible{
  outline: 3px solid var(--ring);
  outline-offset: 2px;
  border-radius: 6px;
}

/* 4) Headings + small accents */
h1, h2, h3{
  color: var(--ink);
}
h2{
  position: relative;
}
h2::after{
  content:"";
  display:block;
  width: 70px;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--trinity-green), var(--trinity-gold));
  opacity: .9;
}

/* 5) Section backgrounds — subtle alternation */
section{ padding-top: 56px; padding-bottom: 56px; }
section:nth-of-type(even){
  background: var(--trinity-mint);
  border-top: 1px solid rgba(12,124,89,.10);
  border-bottom: 1px solid rgba(12,124,89,.10);
}

/* 6) “Card” look for blocks (services, review boxes, etc.)
   If your site already has card classes, add those selectors here too.
*/
.card, .service-card, .review, .box, .panel{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

/* 7) Buttons */
button, .btn, .button, a.btn, a.button{
  background: var(--trinity-green);
  color: #fff;
  border: 2px solid var(--trinity-green);
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
}
button:hover, .btn:hover, .button:hover, a.btn:hover, a.button:hover{
  background: var(--trinity-green-dark);
  border-color: var(--trinity-green-dark);
  transform: translateY(-1px);
}
button:focus-visible, .btn:focus-visible, .button:focus-visible,
a.btn:focus-visible, a.button:focus-visible{
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

/* Optional “gold accent” button class you can use anywhere */
.btn-gold{
  background: var(--trinity-gold) !important;
  border-color: var(--trinity-gold) !important;
  color: #fff !important;
}
.btn-gold:hover{
  filter: brightness(.95);
}

/* 8) Form fields (quote form + any others) */
input, select, textarea{
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 12px;
}
input:focus, select:focus, textarea:focus{
  outline: 3px solid var(--ring);
  border-color: rgba(12,124,89,.55);
}

/* 9) Phone number / top & footer links (common underline culprits) */
header a, footer a, .topbar a{
  text-decoration: none;
}
header a:hover, footer a:hover, .topbar a:hover{
  text-decoration: underline;
}

/* 10) Small gold “rule” option (use on separators if you have them) */
hr{
  border: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--trinity-gold), transparent);
  opacity: .8;
}
/* ===== Trinity brand color tuning (logo-matched) ===== */
:root{
  --trinity-green: #1B5524;
  --trinity-green-dark: #04371B;
  --trinity-gold: #E6AA08;
  --trinity-mint: #F4F9F6;
  --border: #E5E7EB;
  --ring: rgba(230,170,8,.35);
  --shadow: 0 10px 24px rgba(0,0,0,.07);
}

/* ===== Subtle “more green” sitewide (still mostly white) ===== */
body{
  background: linear-gradient(180deg, #ffffff 0%, var(--trinity-mint) 140%);
}

/* Gold CTA class (works with btn-primary, btn-ghost, call-btn, text-btn) */
.btn-gold{
  background: var(--trinity-gold) !important;
  border-color: var(--trinity-gold) !important;
  color: #fff !important;
}
.btn-gold:hover{
  filter: brightness(.95);
  transform: translateY(-1px);
}

/* Optional: make “ghost” buttons look better if used */
.btn-ghost{
  background: transparent;
  border: 2px solid var(--trinity-green);
  color: var(--trinity-green);
}
.btn-ghost:hover{
  background: var(--trinity-green);
  color: #fff;
}

/* Keep footer/top links from looking “default” */
.site-footer a, .top-bar a, .phone-link{
  color: var(--trinity-green);
  text-decoration: none;
}
.site-footer a:hover, .top-bar a:hover, .phone-link:hover{
  color: var(--trinity-green-dark);
  text-decoration: underline;
}
