:root{
  --bg:#0b1220;
  --bg2:#0f1a33;
  --card:#121c33;
  --text:#e8eefc;
  --muted:#a9b6d3;
  --line:rgba(255,255,255,.10);

  /* ✅ GREEN THEME */
  --brand:#22c55e;   /* green */
  --brand2:#86efac;  /* light green */

  --shadow:0 10px 30px rgba(0,0,0,.35);
  --radius:16px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* ✅ subtle green-tinted hero glow */
  background: radial-gradient(1200px 600px at 20% 0%, #123b2a 0%, var(--bg) 55%);

  color:var(--text);
  line-height:1.55;
}

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

a{ color:inherit; }

.container{
  width:min(1100px, calc(100% - 32px));
  margin:0 auto;
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(11,18,32,.75);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.logo{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.logo strong{
  font-size:16px;
  letter-spacing:.2px;
}

.logo span{
  font-size:12px;
  color:var(--muted);
}

.header-cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  border:1px solid transparent;
  transition:.15s ease;
  white-space:nowrap;
}

.btn.primary{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#111;
  /* ✅ green shadow */
  box-shadow: 0 10px 20px rgba(34,197,94,.25);
}

.btn.primary:hover{ transform: translateY(-1px); }

.btn.ghost{
  border-color: var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
}

.btn.ghost:hover{
  background: rgba(255,255,255,.07);
  transform: translateY(-1px);
}

/* Hero */
.hero{
  padding:44px 0 28px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:26px;
  align-items:start;
}

.hero-copy h1{
  margin:0 0 10px;
  font-size: clamp(28px, 4vw, 46px);
  line-height:1.1;
}

.lead{
  color:var(--text);
  font-size:18px;
  margin:0 0 12px;
}

.hero-copy p{
  margin:0 0 14px;
  color:var(--muted);
  max-width:62ch;
}

.hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:18px 0 14px;
}

.trust{
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
  color:var(--muted);
  font-weight:600;
  margin-top:10px;
}

.hero-image{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.03);
}

.hero-image img{
  width:100%;
  height:420px;
  object-fit:cover;
}

/* Sections */
.section{
  padding:34px 0;
}

.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

h2{
  margin:0 0 14px;
  font-size: clamp(20px, 2.6vw, 30px);
}

p{ margin:0 0 12px; }

.services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:14px;
}

/* ✅ service “pills” with light green tint */
.service{
  background: rgba(34,197,94,.10);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: 14px;
  padding:12px 12px;
  color:var(--text);
  font-weight:650;
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
  margin-top:14px;
}

.gallery img{
  border-radius: 14px;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  height:180px;
  object-fit:cover;
}

/* Contact */
.section.contact{
  padding-bottom:54px;
}

.contact-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

/* Footer */
.footer{
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.18);
}

.footer-inner{
  padding:18px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.tiny{ font-size:12px; }
.muted{ color:var(--muted); }

/* Mobile */
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-image img{ height:300px; }
  .services-grid{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px){
  .gallery img{ height:140px; }
}

/* -----------------------------
   Visitor counter (bottom-right)
   ----------------------------- */
#visitor-counter{
  position: fixed;
  bottom: 70px;
  right: 10px;
  font-size: 12px;
  color: var(--muted);
  opacity: 0.55;
  z-index: 9999;
  pointer-events: none;
  user-select: none;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(11,18,32,.65);
  backdrop-filter: blur(8px);
}