:root{
  /* Light theme */
  --bg:#F9FAF9;
  --panel:#ffffff;
  --border:rgba(17,24,39,.12);

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

  /* Brand */
  --accent:#19c37d;   /* punchy green */
  --accent2:#c8921e;  /* warm gold */

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

  --shadow:0 14px 34px rgba(0,0,0,.08);
  --shadow2:0 10px 22px rgba(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 */
}

}

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

}

