:root{
  --navy:#322D7D;
  --navy-2:#615E97;
  --green:#17714C;
  --bg:#FAFBFB;
  --text:#101828;
  --muted:#667085;
  --card:#ffffff;
  --shadow: 0 12px 40px rgba(16,24,40,.12);
  --radius: 22px;
  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:linear-gradient(180deg, #ffffff, var(--bg));
}

img{max-width:100%; height:auto; display:block}
a{color:inherit}
.container{width:min(var(--max), calc(100% - 40px)); margin-inline:auto}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px; width:auto; height:auto; padding:10px 14px;
  background:var(--card); border:2px solid var(--green); border-radius:12px; z-index:9999;
}

.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(140%) blur(10px);
  background:rgba(250,251,251,.72);
  border-bottom:1px solid rgba(50,45,125,.10);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0;
  gap:16px;
}

.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.brand-logo{width:44px; height:44px; border-radius:14px; box-shadow:0 10px 22px rgba(50,45,125,.18)}
.brand-name{display:block; font-weight:800; letter-spacing:.2px}
.brand-tagline{display:block; font-size:.92rem; color:var(--muted)}

.nav{position:relative}
.nav-list{display:flex; align-items:center; gap:18px; list-style:none; margin:0; padding:0}
.nav-list a{ text-decoration:none; font-weight:600; color:rgba(16,24,40,.88)}
.nav-list a:hover{color:var(--navy)}
.nav-toggle{
  display:none;
  background:transparent; border:0; padding:10px; border-radius:14px;
}
.nav-toggle span{
  display:block; width:24px; height:2px; background:var(--navy);
  margin:5px 0; border-radius:2px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid transparent;
  background:linear-gradient(135deg, var(--navy), var(--navy-2));
  color:white; text-decoration:none;
  font-weight:800;
  box-shadow: 0 10px 26px rgba(50,45,125,.28);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn:hover{transform: translateY(-1px); filter:brightness(1.05)}
.btn:active{transform: translateY(0px)}
.btn.small{padding:10px 12px; border-radius:14px; font-size:.92rem}
.btn.outline{
  background:transparent; color:var(--navy);
  border-color: rgba(50,45,125,.22);
  box-shadow:none;
}
.btn.outline:hover{background:rgba(50,45,125,.06)}

.hero{position:relative}
.hero-slider{position:relative; min-height: 72vh; border-bottom:1px solid rgba(50,45,125,.10)}
.hero-slide{
  position:absolute; inset:0;
  opacity:0; transform:scale(1.02);
  transition: opacity .55s ease, transform .85s ease;
}
.hero-slide img{width:100%; height:72vh; object-fit:cover}
.hero-slide.is-active{opacity:1; transform:scale(1)}
.hero-overlay{
  position:relative; z-index:2;
  min-height:72vh;
  display:flex; align-items:flex-end;
  background:linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.18) 40%, rgba(16,24,40,.64));
}
.hero-content{padding:64px 0 46px}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(250,251,251,.16);
  border:1px solid rgba(250,251,251,.28);
  color:#fff;
  font-weight:800;
  letter-spacing:.2px;
  backdrop-filter: blur(8px);
}
.hero h1{
  margin:14px 0 10px;
  color:#fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height:1.05;
  letter-spacing:-.4px;
}
.hero p{margin:0 0 18px; color:rgba(255,255,255,.88); font-size:1.08rem}
.accent{color:#a8ffcf}
.cta-row{display:flex; gap:12px; flex-wrap:wrap}

.hero-pills{margin-top:18px; display:flex; gap:10px; flex-wrap:wrap}
.pill{
  padding:8px 12px;
  background:rgba(250,251,251,.10);
  border:1px solid rgba(250,251,251,.20);
  color:rgba(255,255,255,.92);
  border-radius:999px;
  font-weight:700;
  font-size:.92rem;
}

.hero-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  z-index:3;
  width:44px; height:44px;
  border-radius:999px;
  border:1px solid rgba(250,251,251,.35);
  background:rgba(16,24,40,.22);
  color:#fff;
  font-size:28px;
  display:grid; place-items:center;
  cursor:pointer;
}
.hero-arrow:hover{background:rgba(16,24,40,.35)}
.hero-arrow.prev{left:14px}
.hero-arrow.next{right:14px}

.hero-dots{
  position:absolute; bottom:16px; left:50%;
  transform:translateX(-50%);
  display:flex; gap:8px; z-index:3;
}
.hero-dots button{
  width:10px; height:10px;
  border-radius:999px;
  border:0;
  background:rgba(250,251,251,.5);
  cursor:pointer;
}
.hero-dots button.is-active{background: #fff; width:22px}

.section{padding:72px 0}
.section-alt{background:linear-gradient(180deg, rgba(50,45,125,.06), rgba(23,113,76,.05))}
.section-head{margin-bottom:22px}
.section-head h2{margin:0 0 6px; font-size: clamp(1.6rem, 2.5vw, 2.1rem)}
.section-head p{margin:0; color:var(--muted)}

.grid-2{display:grid; grid-template-columns: 1.05fr .95fr; gap:18px}
@media (max-width: 980px){ .grid-2{grid-template-columns:1fr} }

.card{
  background:var(--card);
  border:1px solid rgba(50,45,125,.12);
  border-radius: var(--radius);
  padding:22px;
  box-shadow: var(--shadow);
}

.checklist{margin:14px 0 0; padding-left:18px; color:rgba(16,24,40,.88)}
.checklist li{margin:8px 0}

.callout{
  margin-top:18px;
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  padding:20px 22px;
  border-radius: var(--radius);
  background: radial-gradient(900px 300px at 12% 20%, rgba(23,113,76,.22), transparent 55%),
              radial-gradient(900px 300px at 80% 60%, rgba(50,45,125,.22), transparent 55%),
              rgba(255,255,255,.86);
  border:1px solid rgba(50,45,125,.12);
  box-shadow: var(--shadow);
}
.callout h3{margin:0 0 4px}
.callout p{margin:0; color:var(--muted)}
.callout-actions{display:flex; gap:10px; flex-wrap:wrap}

.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
@media (max-width: 980px){ .gallery{grid-template-columns: repeat(3,1fr)} }
@media (max-width: 720px){ .gallery{grid-template-columns: repeat(2,1fr)} }

.gallery-item{
  margin:0;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(50,45,125,.14);
  background:#fff;
  box-shadow: 0 10px 22px rgba(16,24,40,.10);
}
.gallery-item img{
  width:100%; height:100%;
  aspect-ratio: 1 / 1;
  object-fit:cover;
  transition: transform .25s ease;
}
.gallery-item a:hover img{transform:scale(1.03)}

.video-wrap{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(50,45,125,.12);
  box-shadow: var(--shadow);
  background:#000;
}
.video-wrap iframe{
  width:100%;
  aspect-ratio: 16/9;
  border:0;
  display:block;
}

.contact-actions{display:flex; gap:12px; flex-wrap:wrap; margin:12px 0 18px}
.contact-line{color:rgba(16,24,40,.88)}
.social-card{
  margin-top:18px;
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(50,45,125,.12);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow);
}
.social-links{display:flex; gap:10px; flex-wrap:wrap; margin:10px 0 12px}
.chip{
  display:inline-flex; padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(50,45,125,.18);
  text-decoration:none;
  font-weight:800;
  background:rgba(50,45,125,.06);
}
.chip:hover{background:rgba(50,45,125,.10)}
.fb-embed iframe{
  width:100%;
  max-width: 500px;
  border-radius: 18px;
}

.form label{display:block; font-weight:800; margin:12px 0 6px}
.form input, .form textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(50,45,125,.18);
  outline:none;
  font:inherit;
  background:#fff;
}
.form input:focus, .form textarea:focus{border-color: rgba(23,113,76,.65); box-shadow: 0 0 0 4px rgba(23,113,76,.12)}
.form-note{margin:10px 0 0; color:var(--muted); font-size:.92rem}

.map{
  margin-top:16px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(50,45,125,.12);
}
.map iframe{width:100%; height:320px; border:0; display:block}

.site-footer{
  background: #0f0d2c;
  color: rgba(255,255,255,.92);
  padding:28px 0 70px;
}
.footer-inner{display:flex; justify-content:space-between; gap:16px; align-items:center; flex-wrap:wrap}
.footer-left{display:flex; gap:12px; align-items:center}
.footer-logo{width:40px; height:40px; border-radius:14px}
.footer-right a{color:#fff}
.muted{color:rgba(255,255,255,.74)}

.reveal{
  opacity:0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible{opacity:1; transform:none}

.lightbox{
  position:fixed; inset:0;
  display:none;
  background: rgba(16,24,40,.78);
  z-index: 99;
  padding: 22px;
}
.lightbox.is-open{display:grid; place-items:center}
.lightbox-img{
  max-width:min(980px, 92vw);
  max-height:72vh;
  border-radius:18px;
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  background:#fff;
}
.lightbox-caption{
  margin-top:10px;
  color:#fff;
  font-weight:800;
  text-align:center;
}
.lightbox-close{
  position:fixed; top:16px; right:16px;
  width:44px; height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background: rgba(16,24,40,.35);
  color:#fff;
  font-size:28px;
  cursor:pointer;
}

.float-wa{
  position:fixed;
  right:18px;
  bottom:88px;
  width:54px;
  height:54px;
  border-radius:999px;
  background:#25D366;
  display:grid;
  place-items:center;
  text-decoration:none;
  box-shadow: 0 14px 34px rgba(37,211,102,.35);
  z-index: 90;
}
.float-wa span{font-size:24px; filter: saturate(0.9)}

.mobile-callbar{
  position:fixed;
  left:0; right:0; bottom:0;
  display:none;
  z-index: 80;
  background: rgba(250,251,251,.92);
  backdrop-filter: blur(10px);
  border-top:1px solid rgba(50,45,125,.12);
}
.mobile-callbar a{
  flex:1;
  text-decoration:none;
  font-weight:900;
  padding:14px 10px;
  text-align:center;
}
.mobile-call{color:#fff; background:linear-gradient(135deg, var(--navy), var(--navy-2))}
.mobile-wa{color:#fff; background:linear-gradient(135deg, var(--green), #1b8a5b)}

@media (max-width: 860px){
  .nav-toggle{display:inline-block}
  .nav-list{
    position:absolute;
    right:0;
    top:54px;
    background:rgba(250,251,251,.98);
    border:1px solid rgba(50,45,125,.12);
    border-radius:18px;
    padding:10px;
    flex-direction:column;
    gap:10px;
    min-width: 240px;
    box-shadow: var(--shadow);
    display:none;
  }
  .nav-list.is-open{display:flex}
  .hero-arrow{display:none}
  .mobile-callbar{display:flex}
  .float-wa{bottom:86px}
  .hero-content{padding:46px 0 28px}
  .hero-slide img{height:70vh}
  .hero-overlay{min-height:70vh}
}
.thanks{
  min-height:100vh;
  display:grid;
  place-items:center;
}
.thanks-card{
  margin:40px auto;
  text-align:center;
  background:var(--card);
  border:1px solid rgba(50,45,125,.12);
  border-radius: var(--radius);
  padding:26px;
  box-shadow: var(--shadow);
}
.thanks-logo{width:74px; height:74px; margin:0 auto 10px; border-radius:18px}