/* Anagha Energia - Tender-ready, clean, modern (green/white) */
:root{
  --bg: #f6fbf7;
  --card:#ffffff;
  --text:#0e1b12;
  --muted:#4a5a50;
  --green:#1b7a3a;
  --green2:#0f5f2a;
  --line: rgba(14,27,18,.12);
  --shadow: 0 14px 40px rgba(0,0,0,.10);
  --shadow2: 0 10px 30px rgba(0,0,0,.08);
  --radius: 18px;
  --radius2: 14px;
  --max: 1160px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 15% -10%, rgba(27,122,58,.14), transparent 60%),
    radial-gradient(900px 600px at 100% 15%, rgba(27,122,58,.10), transparent 55%),
    var(--bg);
}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.section{padding:72px 0}
.section.tight{padding:48px 0}
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:16px;
  margin-bottom:22px;
}
.section-head h2{margin:0; font-size:30px; letter-spacing:-.02em}
.section-head p{margin:0; max-width:520px; color:var(--muted); line-height:1.55}

.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.7);
  box-shadow: 0 2px 10px rgba(0,0,0,.03);
  font-size:13px;
  color:var(--muted);
}
.dot{width:10px; height:10px; border-radius:50%; background:var(--green)}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(246,251,247,.80);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px; font-weight:800;
  letter-spacing:-.02em;
}
.brand-mark{
  width:36px; height:36px; border-radius:12px;
  background: linear-gradient(135deg, var(--green), #24a34d);
  position:relative;
  box-shadow: 0 10px 26px rgba(27,122,58,.22);
}
.brand-mark:after{
  content:""; position:absolute; inset:9px 10px 10px 9px;
  border-radius:10px;
  border:2px solid rgba(255,255,255,.75);
}
.brand small{display:block; font-weight:650; color:var(--muted); letter-spacing:0; margin-top:2px}

.menu{
  align-items:center; gap:16px;
}
.menu a{
  font-size:14px;
  color:var(--muted);
  padding:8px 10px;
  border-radius:10px;
}
.menu a:hover{background:rgba(27,122,58,.08); color:var(--text)}
.menu a.active{background:rgba(27,122,58,.12); color:var(--text); font-weight:650}

.nav-actions{display:flex; align-items:center; gap:10px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.85);
  color:var(--text);
  font-weight:650;
  cursor:pointer;
  transition:.2s ease;
}
.btn:hover{transform: translateY(-1px); box-shadow: var(--shadow2)}
.btn.primary{
  background: linear-gradient(135deg, var(--green), var(--green2));
  border-color: rgba(255,255,255,.15);
  color:white;
}
.btn.ghost{
  background: transparent;
}
.btn.small{padding:9px 12px; font-size:10px}

.mobile-toggle{
  display:none;
  width:42px; height:42px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.85);
  cursor:pointer;
}
.mobile-toggle span{
  display:block; width:18px; height:2px; background:var(--text);
  margin:0 auto; position:relative;
}
.mobile-toggle span:before,.mobile-toggle span:after{
  content:""; position:absolute; left:0; right:0; height:2px; background:var(--text);
}
.mobile-toggle span:before{top:-6px}
.mobile-toggle span:after{top:6px}

/* Hero */
.hero{padding:64px 0 28px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:24px;
  align-items:stretch;
}
.hero-card{
  background: rgba(255,255,255,.78);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.hero-left{padding:26px}
.hero-title{
  font-size:46px; line-height:1.06; letter-spacing:-.03em;
  margin:12px 0 12px;
}
.hero-sub{
  color:var(--muted);
  line-height:1.6;
  margin:0 0 18px;
  max-width: 60ch;
}
.hero-ctas{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.kpis{
  display:grid; grid-template-columns: repeat(3, 1fr);
  gap:10px; margin-top:18px;
}
.kpi{
  border:1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  padding:12px;
}
.kpi strong{font-size:20px}
.kpi span{display:block; font-size:12px; color:var(--muted); margin-top:2px}

.hero-media{
  display:flex; flex-direction:column; height:100%;
}
.hero-img{
  position:relative;
  aspect-ratio: 4 / 3;
  background:#0f1f15;
}
.hero-img img{width:100%; height:100%; object-fit:cover}
.overlay{
  position:absolute; inset:auto 14px 14px 14px;
  background: rgba(14,27,18,.70);
  border:1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
  padding:14px;
  border-radius: 16px;
  display:flex; justify-content:space-between; align-items:center; gap:10px;
}
.overlay p{margin:0; font-size:13px; line-height:1.35; color: rgba(255,255,255,.85)}
.pills{display:flex; gap:8px; flex-wrap:wrap}
.pill{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
}

.logo-strip{
  display:flex; gap:12px; flex-wrap:wrap;
  padding:16px;
  border-top:1px solid var(--line);
  background: rgba(255,255,255,.85);
}
.logo-chip{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: #fff;
  min-width: 210px;
}
.logo-chip img{width:28px; height:28px; object-fit:contain}
.logo-chip b{font-size:13px}
.logo-chip small{display:block; color:var(--muted); font-size:12px; margin-top:2px}

/* Cards / grids */
.grid-3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.grid-4{display:grid; grid-template-columns: repeat(4, 1fr); gap:14px}
.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.86);
  border-radius: var(--radius2);
  box-shadow: 0 8px 22px rgba(0,0,0,.05);
  overflow:hidden;
}
.card .pad{padding:16px}
.card h3{margin:0 0 8px; font-size:18px; letter-spacing:-.01em}
.card p{margin:0; color:var(--muted); line-height:1.6}
.card .meta{display:flex; gap:8px; flex-wrap:wrap; margin-top:12px; margin-bottom:12px}
.tag{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(27,122,58,.08);
  color: var(--green2);
  font-weight:650;
}
.thumb{aspect-ratio: 16/10; background:#e8f2ec}
.thumb img{width:100%; height:100%; object-fit:cover}

.split{
  display:grid; grid-template-columns: 1fr 1fr; gap:18px;
  align-items:start;
}
.bullets{
  margin:12px 0 0; padding:0; list-style:none;
}
.bullets li{
  display:flex; gap:10px; align-items:flex-start;
  padding:10px 0;
  border-top:1px solid var(--line);
}
.bullets li:first-child{border-top:none}
.check{
  width:22px; height:22px; border-radius:7px;
  background: rgba(27,122,58,.12);
  border:1px solid rgba(27,122,58,.18);
  display:flex; align-items:center; justify-content:center;
  margin-top:1px;
  flex:0 0 22px;
}
.check svg{width:14px; height:14px; fill: var(--green2)}

.callout{
  border:1px solid rgba(27,122,58,.20);
  background: linear-gradient(135deg, rgba(27,122,58,.12), rgba(255,255,255,.85));
  border-radius: var(--radius);
  padding:40px;
  box-shadow: var(--shadow2);
}
.callout h3{margin:0 0 8px; font-size:18px}
.callout p{margin:0; color:var(--muted); line-height:1.6}

/* Timeline */
.timeline{position:relative; padding-left:18px}
.timeline:before{
  content:""; position:absolute; left:6px; top:8px; bottom:8px;
  width:2px; background: rgba(27,122,58,.22);
}
.t-item{
  position:relative;
  padding:14px 14px 14px 18px;
  margin:0 0 12px;
  border:1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.86);
}
.t-item:before{
  content:""; position:absolute; left:-1px; top:18px;
  width:14px; height:14px; border-radius:50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(27,122,58,.15);
}
.t-item h3{margin:0 0 6px; font-size:16px}
.t-item p{margin:0; color:var(--muted); line-height:1.55}
.t-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}

/* Map section */
.map{
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background: #fff;
  box-shadow: var(--shadow2);
}
.map img{width:100%; height:auto}

/* Forms */
.form{
  display:grid; gap:12px;
}
.field{
  display:grid; gap:6px;
}
.field label{font-size:13px; color:var(--muted)}
.input, .textarea{
  border:1px solid var(--line);
  border-radius: 14px;
  padding:12px 12px;
  background: rgba(255,255,255,.9);
  font-family:inherit;
  outline:none;
}
.textarea{min-height:120px; resize:vertical}
.input:focus, .textarea:focus{border-color: rgba(27,122,58,.45); box-shadow: 0 0 0 4px rgba(27,122,58,.12)}

/* Footer */
.footer{
  padding:34px 0 20px;
  border-top:1px solid var(--line);
  background:
    radial-gradient(900px 600px at 15% 120%, rgba(27,122,58,.15), transparent 60%),
    #0c1210;
  color: rgba(255,255,255,.86);
}
.footer a{color: rgba(255,255,255,.82)}
.footer-grid{
  display:grid; grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap:18px;
}
.footer h3{margin:0 0 10px; font-size:14px; letter-spacing:.02em; text-transform:uppercase; color:#fff}
.footer ul{list-style:none; margin:0; padding:0; display:grid; gap:8px}
.footer small{color: rgba(255,255,255,.66)}
.footer-bottom{
  display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:18px; padding-top:16px;
}
.social{display:flex; gap:10px; flex-wrap:wrap}
.social a{
  display:inline-flex; align-items:center; justify-content:center;
  width:38px; height:38px; border-radius:12px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
}
.social svg{width:18px; height:18px; fill: rgba(255,255,255,.85)}

/* Utility */
.note{color:var(--muted); font-size:13px; line-height:1.6}
.hr{height:1px; background:var(--line); margin:18px 0}
.page-hero{
  padding:44px 0 12px;
}
.page-hero h1{
  margin:12px 0 8px; font-size:40px; letter-spacing:-.03em; line-height:1.08;
}
.page-hero p{margin:0; color:var(--muted); line-height:1.6}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr}
  .grid-4{grid-template-columns: repeat(2, 1fr)}
  .grid-3{grid-template-columns: repeat(2, 1fr)}
  .split{grid-template-columns: 1fr}
  .footer-grid{grid-template-columns: 1fr 1fr}
  .kpis{grid-template-columns: repeat(3, 1fr)}
  .menu{display:none}
  .mobile-toggle{display:inline-flex; align-items:center; justify-content:center}
}
@media (max-width: 620px){
  .grid-4,.grid-3{grid-template-columns: 1fr}
  .hero-title{font-size:36px}
  .kpis{grid-template-columns: 1fr}
  .page-hero h1{font-size:32px}
}

/* Mobile menu drawer */
.drawer{
  position:fixed; inset:0;
  background: rgba(0,0,0,.45);
  display:none; z-index:80;
}
.drawer.open{display:block}
.drawer-panel{
  position:absolute; right:0; top:0; bottom:0;
  width:min(420px, 92vw);
  background: rgba(246,251,247,.96);
  border-left:1px solid var(--line);
  padding:16px;
  box-shadow: var(--shadow);
}
.drawer-top{display:flex; align-items:center; justify-content:space-between; gap:10px}
.drawer-links{display:grid; gap:8px; margin-top:12px}
.drawer-links a{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.9);
  color: var(--text);
}
.drawer-links a:hover{border-color: rgba(27,122,58,.35)}


.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:inherit;
}

.brand-logo{
  height:40px;
  width:auto;        /* responsive logo sizing */
  display:block;
  object-fit:contain;
}

.brand-text small{
  display:block;
  color:var(--muted);
  font-size:12px;
  margin-top:2px;
}

/* Drawer logo a little smaller */
.drawer .brand-logo{
  height:34px;
}


/* mouse movement animation */


html.has-custom-cursor, html.has-custom-cursor *{ cursor:none; }

.cursor-dot,.cursor-ring{
  position:fixed; left:0; top:0;
  pointer-events:none; /* ensures it doesn't block clicks */
  z-index:99999;
}

.cursor-dot{
  width:6px;height:6px;border-radius:999px;
  background:#1b7a3a;
  transform:translate(-50%,-50%);
}

.cursor-ring{
  width:34px;height:34px;border-radius:999px;
  border:2px solid rgba(27,122,58,.55);
  transform:translate(-50%,-50%);
  opacity:.9;
}

@media (hover:none){
  .cursor-dot,.cursor-ring{display:none!important;}
  html.has-custom-cursor, html.has-custom-cursor *{cursor:auto;}
}
