/* ENSASE STYLESHEET */
:root{
  --brand-primary: #470260;
  --brand-accent1: #09FF00;
  --brand-accent2: #5EFECA;
  --white:#ffffff;
  --muted:#6b6b6b;
  --glass: rgba(255,255,255,0.85);
  --shadow: 0 8px 30px rgba(71,2,96,0.08);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: var(--white);
  color:#222;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.6;
  scroll-behavior:smooth;
}

/* NAV */
.navbar{backdrop-filter: blur(8px); background: rgba(255,255,255,0.9); border-bottom:1px solid rgba(0,0,0,0.04); box-shadow: 0 3px 10px rgba(0,0,0,0.03);}
.navbar-brand { font-weight:700; color:var(--brand-primary);}
.brand-badge{
  width:48px; height:48px; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  background:var(--brand-primary); color:var(--brand-accent2); font-size:1.1rem;
  box-shadow: 0 6px 18px rgba(71,2,96,0.12);
}
.nav-link{color:#444; font-weight:600}
.nav-link.active, .nav-link:hover{color:var(--brand-accent1) !important;}

/* HERO */
.hero{
  min-height:68vh;
  background-size:cover; background-position:center; position:relative;
  display:flex; align-items:center;
}
.hero .overlay{position:absolute; inset:0; background: linear-gradient(180deg, rgba(71,2,96,0.35), rgba(71,2,96,0.55));}
.hero .container{position:relative; z-index:2}
.hero h1{color:#fff; font-weight:800; line-height:1.05; text-shadow: 0 8px 30px rgba(0,0,0,0.35)}
.hero p.lead{color:rgba(255,255,255,0.95); font-size:1.05rem}

/* Buttons */
.btn-primary{
  background: linear-gradient(90deg, var(--brand-accent1), var(--brand-accent2));
  border:none; color:#000; font-weight:700;
  box-shadow: 0 8px 20px rgba(9,255,0,0.08);
}
.btn-primary:hover{transform:translateY(-2px); box-shadow: 0 14px 30px rgba(9,255,0,0.12)}

/* GLASS CARDS */
.card.glass{
  background: var(--glass); border:none; border-radius:14px;
  box-shadow: var(--shadow); transition:transform .28s ease, box-shadow .28s ease;
}
.card.glass:hover{transform: translateY(-6px); box-shadow: 0 20px 40px rgba(71,2,96,0.12);}

.icon-badge{
  width:64px; height:64px; border-radius:12px; display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; color:var(--brand-accent2); background:var(--brand-primary); margin:0 auto 0.8rem;
  transition: all .25s ease;
}
.card:hover .icon-badge{background:var(--brand-accent1); color:#000}

/* GRID IMAGES */
.gallery-grid{display:grid; grid-template-columns: repeat(4, 1fr); gap:14px;}
.gallery-grid img{width:100%; height:160px; object-fit:cover; border-radius:12px; box-shadow: 0 8px 20px rgba(0,0,0,0.06); cursor:pointer; transition: transform .2s ease;}
.gallery-grid img:hover{transform: scale(1.03)}

/* SECTION TITLES */
.section-title{font-weight:800; color:var(--brand-primary)}
.eyebrow{font-size:.78rem; letter-spacing:.16em; text-transform:uppercase; color:var(--muted); font-weight:700}

/* FEATURES */
.feature-list .feature{display:flex; gap:1rem; align-items:flex-start}
.feature .bullet{width:46px; height:46px; border-radius:10px; display:flex; align-items:center; justify-content:center; background:var(--brand-primary); color:var(--brand-accent2)}

/* FOOTER */
footer{background:var(--brand-primary); color:#fff; padding:2.5rem 0;}
.footer a{color:var(--brand-accent2)}
.footer small{opacity:.9}
.social-icons a{display:inline-flex; align-items:center; justify-content:center; width:42px; height:42px; margin-right:8px; border-radius:8px; background:rgba(255,255,255,0.06); color:var(--brand-accent2);}

/* CONTACT FORM */
.form-card{border-radius:14px; overflow:hidden}
.input-focus:focus{box-shadow:0 6px 22px rgba(71,2,96,0.08); border-color:var(--brand-accent2)}

/* RESPONSIVE */
@media (max-width: 991px){
  .gallery-grid{grid-template-columns: repeat(2,1fr)}
  .hero{min-height:58vh}
}
@media (max-width: 576px){
  .gallery-grid{grid-template-columns: 1fr}
  .brand-badge{width:42px;height:42px}
}
