/* Base / Desktop Styles
   Default background per your preference: rgba(0,0,0,0.15)
*/

:root{
  --bg: rgba(0,0,0,0.15);
  --panel: rgba(255,255,255,0.92);
  --panel-2: rgba(255,255,255,0.85);
  --text: #0b0f14;
  --muted: rgba(11,15,20,0.72);
  --line: rgba(11,15,20,0.12);
  --shadow: 0 18px 50px rgba(0,0,0,0.18);
  --radius: 18px;
  --radius-lg: 26px;
  --max: 1120px;

  --green: #1e7f3a;
  --green-2: #155e2b;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0.55)),
              radial-gradient(1200px 700px at 10% 0%, rgba(30,127,58,0.18), transparent 60%),
              radial-gradient(900px 600px at 90% 10%, rgba(21,94,43,0.14), transparent 55%),
              var(--bg);
}

img{ max-width:100%; display:block; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* Topbar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.55);
  border-bottom: 1px solid var(--line);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 0;
}
.brand-mini{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 700;
}
.logo-dot{
  width: 150px;
  height: 100px;
background: url("assets/logo.png") center / contain no-repeat;
  
}
.topbar-actions{ display:flex; gap:10px; }
.chip{
  text-decoration:none;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
}
.chip:hover{ background: rgba(255,255,255,0.92); }

/* Header / Nav */
.header{
  position: sticky;
  top: 48px; /* under topbar */
  z-index: 40;
  background: rgba(255,255,255,0.65);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  color: var(--text);
}
.logo{
  width: 42px;
  height: 42px;
  border-radius: 14px;
   background: url("assets/logo.png") center / contain no-repeat;
  box-shadow: 0 14px 30px rgba(30,127,58,0.25);
}
.brand-text{ display:flex; flex-direction:column; line-height: 1.05; }
.brand-name{ font-weight: 900; letter-spacing: 0.3px; }
.brand-sub{ font-weight: 700; color: var(--muted); font-size: 13px; }

.nav-links{
  display:flex;
  align-items:center;
  gap: 18px;
}
.nav-links a{
  text-decoration:none;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 10px;
}
.nav-links a:hover{
  background: rgba(30,127,58,0.10);
}

.nav-toggle{
  display:none; /* enabled in mobile.css */
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.8);
  border-radius: 14px;
  padding: 10px 12px;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width: 22px;
  height: 2px;
  background: rgba(11,15,20,0.85);
  margin: 5px 0;
  border-radius: 2px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
  font-weight: 900;
  color: white;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 16px 35px rgba(30,127,58,0.20);
}
.btn:hover{ filter: brightness(1.02); transform: translateY(-1px); }
.btn.small{ padding: 10px 14px; border-radius: 14px; }
.btn.ghost{
  background: rgba(255,255,255,0.78);
  color: var(--text);
  box-shadow: none;
}
.btn.ghost:hover{ background: rgba(255,255,255,0.95); }

/* Hero */
.hero{
  position: relative;
  overflow:hidden;
  padding: 44px 0 24px;
}
.hero-bg{
  position:absolute;
  inset: -40px;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(11,15,20,0.62), rgba(11,15,20,0.25)),
    url("https://images.unsplash.com/photo-1601992392040-6cde2c67f5dd?auto=format&fit=crop&w=2400&q=70");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}
.hero-inner{
  position: relative;
  z-index: 1;
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}
.hero-card{
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.hero-card h1{
  margin: 0 0 12px;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.6px;
}
.hero-card p{
  margin: 0 0 18px;
  color: rgba(11,15,20,0.78);
  font-weight: 650;
  line-height: 1.5;
  font-size: 16px;
  max-width: 54ch;
}
.hero-cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 18px;
}
.hero-badges{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.badge{
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
}
.badge strong{ display:block; font-size: 14px; }
.badge span{ color: var(--muted); font-weight: 700; font-size: 12px; }

.hero-photos{
  display:grid;
  grid-template-rows: 1fr;
  gap: 12px;
}
.photo{
  margin:0;
  border-radius: var(--radius-lg);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
}
.photo img{
  width:100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

/* Strip */
.strip{
  padding: 18px 0 10px;
}
.strip-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.strip-item{
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}
.strip-item h3{
  margin:0 0 6px;
  font-size: 18px;
}
.strip-item p{
  margin:0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
}

/* Sections */
.section{
  padding: 64px 0;
}
.section.alt{
  background: rgba(255,255,255,0.40);
  border-top: 1px solid rgba(11,15,20,0.06);
  border-bottom: 1px solid rgba(11,15,20,0.06);
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.section-head h2{
  margin:0;
  font-size: 34px;
  letter-spacing: -0.4px;
}
.section-head p{
  margin:0;
  color: var(--muted);
  font-weight: 650;
  max-width: 60ch;
}

/* Service cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  display:flex;
  flex-direction:column;
}
.card-media{
  height: 180px;
  overflow:hidden;
}
.card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.03);
}
.card-body{
  padding: 18px;
}
.card-body h3{
  margin: 0 0 10px;
  font-size: 20px;
}
.list{
  margin: 0 0 10px;
  padding-left: 18px;
  color: rgba(11,15,20,0.78);
  font-weight: 650;
  line-height: 1.55;
}
.text-link{
  text-decoration:none;
  font-weight: 900;
  color: var(--green-2);
}
.text-link:hover{ text-decoration: underline; }

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery img{
  width:100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(11,15,20,0.10);
  box-shadow: 0 16px 35px rgba(0,0,0,0.10);
}

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.step{
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
}
.step-num{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display:inline-grid;
  place-items:center;
  font-weight: 900;
  color: white;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 16px 30px rgba(30,127,58,0.20);
}
.step h3{ margin: 12px 0 6px; }
.step p{ margin:0; color: var(--muted); font-weight: 650; line-height: 1.5; }

/* Reviews */
.reviews{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.review{
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
}
.review p{
  margin:0 0 10px;
  font-weight: 750;
  line-height: 1.55;
  color: rgba(11,15,20,0.78);
}
.review span{ color: var(--muted); font-weight: 800; }

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.contact-card{
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
}
.contact-card h2{ margin:0 0 10px; font-size: 30px; }
.contact-card p{ margin:0 0 14px; color: var(--muted); font-weight: 650; line-height: 1.5; }
.contact-actions{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.contact-details{
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: rgba(11,15,20,0.75);
  font-weight: 700;
  display:grid;
  gap: 8px;
}
.form{
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
}
label{
  display:block;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 12px;
}
input, select, textarea{
  width:100%;
  margin-top: 8px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(11,15,20,0.14);
  background: rgba(255,255,255,0.90);
  font-weight: 650;
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(30,127,58,0.55);
  box-shadow: 0 0 0 4px rgba(30,127,58,0.14);
}
.fine{
  color: var(--muted);
  font-weight: 650;
  font-size: 12px;
  margin: 10px 0 0;
}

/* Footer */
.footer{
  padding: 28px 0 44px;
  border-top: 1px solid rgba(11,15,20,0.08);
  background: rgba(255,255,255,0.35);
}
.footer-inner{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.footer-brand{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.footer-brand p{
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 650;
}
.footer-links{
  display:grid;
  gap: 10px;
}
.footer-links a{
  text-decoration:none;
  color: rgba(11,15,20,0.82);
  font-weight: 800;
}
.footer-links a:hover{ text-decoration: underline; }
.footer-note{
  color: var(--muted);
  font-weight: 700;
  text-align:right;
}

/* Small motion */
@media (prefers-reduced-motion: no-preference){
  .btn{ transition: transform .15s ease, filter .15s ease; }
  .chip{ transition: background .15s ease; }
  .nav-links a{ transition: background .15s ease; }
}