:root{
  --green:#00451d;
  --green2:#006b2e;
  --red:#BB1E10;
  --text:#111827;
  --muted:#475467;
  --line:#e5e7eb;
  --white:#fff;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:#fff;
}
a{text-decoration:none;color:inherit}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:10000;
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,.12);
}

.brand-strip{
  height:72px;
  display:grid;
  grid-template-columns:82px minmax(0,1fr) 82px;
  align-items:center;
  padding:5px 6%;
  gap:12px;
  background:#fff;
}

.brand-logo-box{
  display:flex;
  align-items:center;
  justify-content:center;
}

.brand-logo-box img{
  width:54px;
  height:54px;
  object-fit:contain;
}

.logo-placeholder{
  width:50px;
  height:50px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--green2);
  color:#fff;
  font-size:10px;
  font-weight:900;
}
.logo-placeholder.right{
  border-radius:6px;
  background:linear-gradient(135deg,#111,#fff,var(--red),var(--green2));
}

.brand-title{
  text-align:center;
  overflow:hidden;
}

.brand-title h1{
  margin:0;
  color:var(--green);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(24px,3vw,38px);
  line-height:1;
  font-weight:800;
  letter-spacing:.035em;
  white-space:nowrap;
}

/* MENU */
.mainnav{
  position:relative;
  height:52px;
  background:var(--green);
  border-bottom:4px solid var(--red);
  z-index:10001;
}

.nav-wrap{
  width:min(1200px,94%);
  margin:0 auto;
  position:relative;
}

.menu{
  height:52px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:42px;
  margin:0;
  padding:0;
  list-style:none;
}

.menu>li{
  position:relative;
}

.menu>li>a{
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:15px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.02em;
  padding:0 4px;
}

.menu>li>a.active{
  border-bottom:4px solid var(--red);
  margin-bottom:-4px;
}

/* only submenu parents get hover */
.menu>li:not(.has-mega):hover>a{
  background:transparent;
  color:#fff;
}

.has-mega:hover>a{
  color:#fff;
}

.has-mega:hover>a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-4px;
  transform:translateX(-50%);
  border-left:11px solid transparent;
  border-right:11px solid transparent;
  border-bottom:11px solid #fff;
  z-index:20002;
}

/* MEGA MENU */
.mega-menu{
  position:absolute;
  top:52px;
  left:50%;
  transform:translateX(-50%) translateY(8px);
  width:390px;
  background:#fff;
  border-top:5px solid var(--red);
  border-radius:0 0 7px 7px;
  box-shadow:0 22px 55px rgba(0,0,0,.25);
  padding:18px 20px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:.16s ease;
  z-index:20000;
}

.business-menu,
.committee-menu{
  width:430px;
}

.has-mega:hover .mega-menu,
.mega-menu:hover{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}

.mega-head{
  display:grid;
  grid-template-columns:48px 1fr;
  gap:14px;
  align-items:start;
  padding-bottom:14px;
  margin-bottom:6px;
  border-bottom:1px solid var(--line);
}

.mega-head>span{
  width:46px;
  height:46px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--green);
  color:#fff;
  font-size:24px;
}

.mega-head h3{
  margin:0;
  color:var(--green);
  font-size:19px;
  font-weight:900;
  text-transform:uppercase;
}

.mega-head h3::after{
  content:"";
  display:block;
  width:34px;
  height:3px;
  background:var(--red);
  margin-top:6px;
}

.mega-head p{
  margin:8px 0 0;
  color:#111;
  font-size:14px;
  line-height:1.35;
}

.mega-row{
  display:grid;
  grid-template-columns:42px 1fr 12px;
  gap:12px;
  align-items:center;
  padding:11px 0;
  border-bottom:1px solid var(--line);
}

.mega-row:last-child{
  border-bottom:0;
}

.mega-row>span{
  width:38px;
  height:38px;
  border-radius:7px;
  display:grid;
  place-items:center;
  background:#eaf3ec;
  color:var(--green);
  font-size:20px;
}

.mega-row strong{
  display:block;
  color:var(--green);
  font-size:14px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:2px;
}

.mega-row em{
  display:block;
  color:#333;
  font-size:12px;
  font-style:normal;
  line-height:1.25;
}

.mega-row b{
  font-size:24px;
  font-weight:400;
}

.mega-row:hover{
  background:#fbfdfb;
}

.mega-row:hover>span{
  background:var(--green);
  color:#fff;
}

/* SLIDER */
.hero-slider{
  position:relative;
  height:500px;
  overflow:hidden;
  background:#111;
  z-index:1;
}

.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  visibility:hidden;
  transition:opacity .65s ease;
}

.hero-slide.active{
  opacity:1;
  visibility:visible;
}

.fallback-slide{
  background-image:url("https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=1800&q=80");
}

.hero-shade{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.72),rgba(0,69,29,.35),rgba(0,0,0,.10));
}

.hero-copy{
  position:relative;
  z-index:2;
  width:min(1200px,94%);
  height:100%;
  margin:auto;
  display:flex;
  flex-direction:column;
  justify-content:center;
  color:#fff;
}

.hero-copy h2{
  max-width:650px;
  margin:0 0 18px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(32px,4vw,56px);
  line-height:1.12;
  text-shadow:0 3px 12px rgba(0,0,0,.45);
}

.hero-copy p{
  max-width:620px;
  margin:0 0 24px;
  font-size:18px;
  line-height:1.45;
}

.hero-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.hero-buttons a{
  background:var(--green2);
  color:#fff;
  padding:13px 22px;
  border-radius:4px;
  font-weight:900;
  font-size:14px;
}

.hero-buttons .outline{
  background:rgba(0,0,0,.28);
  border:1px solid #fff;
}

.slider-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:50%;
  border:0;
  background:rgba(0,0,0,.55);
  color:#fff;
  font-size:34px;
  cursor:pointer;
  z-index:5;
}
.slider-arrow.left{left:24px}
.slider-arrow.right{right:24px}

.slider-dots{
  position:absolute;
  left:50%;
  bottom:20px;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
  z-index:5;
}
.slider-dots span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#fff;
}
.slider-dots .on{
  background:var(--green2);
  outline:2px solid #fff;
}

/* FOOTER */
.footer{
  background:var(--green);
  color:#fff;
  border-top:4px solid var(--red);
}

.footer-inner{
  width:min(1200px,94%);
  margin:auto;
  display:grid;
  grid-template-columns:1.3fr .8fr 1fr;
  gap:40px;
  padding:32px 0;
}

.footer h3,.footer h4{margin-top:0}
.footer a{display:block;color:#fff;margin:6px 0}
.footer p{font-size:14px;line-height:1.5}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.15);
  text-align:center;
  padding:12px;
  font-size:13px;
}

/* MOBILE */
.menu-toggle{
  display:none;
}

@media(max-width:900px){
  .brand-strip{
    height:62px;
    grid-template-columns:52px 1fr 52px;
    padding:4px 8px;
  }

  .brand-logo-box img,
  .logo-placeholder{
    width:42px;
    height:42px;
  }

  .brand-title h1{
    font-size:clamp(16px,4vw,22px);
    white-space:nowrap;
    letter-spacing:.01em;
  }

  .mainnav{
    height:auto;
  }

  .menu-toggle{
    display:block;
    width:100%;
    border:0;
    background:var(--green);
    color:#fff;
    padding:13px;
    font-weight:900;
    text-transform:uppercase;
  }

  .nav-wrap{
    width:100%;
  }

  .menu{
    display:none;
    height:auto;
    flex-direction:column;
    align-items:stretch;
    gap:0;
  }

  body.menu-open .menu{
    display:flex;
  }

  .menu>li>a{
    height:auto;
    justify-content:flex-start;
    padding:14px 18px;
    border-bottom:1px solid rgba(255,255,255,.15);
  }

  .has-mega:hover>a::after{
    display:none;
  }

  .mega-menu,
  .business-menu,
  .committee-menu{
    position:static;
    width:100%;
    transform:none;
    display:none;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    border-radius:0;
    box-shadow:none;
  }

  .has-mega:hover .mega-menu{
    display:block;
    transform:none;
  }

  .hero-slider{
    height:420px;
  }

  .hero-copy{
    padding:0 18px;
  }

  .hero-copy h2{
    font-size:30px;
  }

  .hero-copy p{
    font-size:15px;
  }

  .slider-arrow{
    display:none;
  }

  .footer-inner{
    grid-template-columns:1fr;
  }
}

/* SLIDER FLOATING ICONS - RESTORED */
.hero-slider{
  overflow:visible !important;
  margin-bottom:78px !important;
}

.slider-quick-links{
  position:absolute;
  left:50%;
  bottom:-68px;
  transform:translateX(-50%);
  width:min(1080px,90%);
  min-height:126px;
  background:#fff;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-radius:6px;
  box-shadow:0 14px 34px rgba(0,0,0,.18);
  z-index:20;
  border-top:4px solid #BB1E10;
  overflow:hidden;
}

.slider-quick-links a{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  text-align:center;
  padding:18px 14px;
  border-right:1px solid #e5e7eb;
  transition:.18s ease;
}

.slider-quick-links a:last-child{
  border-right:0;
}

.slider-quick-links a:hover{
  background:#f6fbf7;
  transform:translateY(-2px);
}

.slider-quick-links span{
  color:#00451d;
  font-size:32px;
  line-height:1;
}

.slider-quick-links strong{
  color:#00451d;
  font-size:15px;
  font-weight:900;
  text-transform:uppercase;
}

.slider-quick-links em{
  color:#475467;
  font-size:12px;
  font-style:normal;
}

.footer{
  margin-top:0 !important;
}

@media(max-width:900px){
  .hero-slider{
    margin-bottom:0 !important;
  }

  .slider-quick-links{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:100%;
    grid-template-columns:repeat(2,1fr);
    border-radius:0;
  }
}

@media(max-width:520px){
  .slider-quick-links{
    grid-template-columns:1fr;
  }

  .slider-quick-links a{
    border-right:0;
    border-bottom:1px solid #e5e7eb;
  }
}

/* FINAL SLIDER HEIGHT + SIX ICON LINKS */
.hero-slider{
  height:390px !important;
  min-height:390px !important;
  margin-bottom:66px !important;
}

.hero-copy h2{
  max-width:620px !important;
  font-size:clamp(28px,3.2vw,46px) !important;
  line-height:1.08 !important;
  margin-bottom:12px !important;
}

.hero-copy p{
  max-width:560px !important;
  font-size:16px !important;
  margin-bottom:18px !important;
}

.hero-buttons a{
  padding:11px 18px !important;
  font-size:13px !important;
}

.slider-quick-links{
  bottom:-58px !important;
  width:min(1180px,92%) !important;
  min-height:112px !important;
  grid-template-columns:repeat(6,1fr) !important;
  border-top:3px solid #BB1E10 !important;
}

.slider-quick-links a{
  padding:14px 10px !important;
  gap:4px !important;
}

.slider-quick-links span{
  font-size:27px !important;
}

.slider-quick-links strong{
  font-size:12px !important;
  line-height:1.2 !important;
}

.slider-quick-links em{
  font-size:11px !important;
  line-height:1.2 !important;
}

.slider-dots{
  bottom:16px !important;
}

@media(max-width:900px){
  .hero-slider{
    height:360px !important;
    min-height:360px !important;
    margin-bottom:0 !important;
  }

  .slider-quick-links{
    position:relative !important;
    bottom:auto !important;
    width:100% !important;
    grid-template-columns:repeat(2,1fr) !important;
  }
}

@media(max-width:520px){
  .hero-slider{
    height:340px !important;
    min-height:340px !important;
  }

  .slider-quick-links{
    grid-template-columns:1fr !important;
  }
}

/* FINAL APPROVED THREE-COLUMN FOOTER */
.footer{
  display:none !important;
}

.site-footer{
  background:
    radial-gradient(circle at left top, rgba(255,255,255,.06), transparent 28%),
    linear-gradient(135deg,#006b2e 0%,#003b18 100%);
  color:#fff;
  border-top:4px solid #BB1E10;
  margin-top:0;
}

.footer-main{
  width:min(1320px,94%);
  margin:auto;
  display:grid;
  grid-template-columns:1.15fr 1fr 1.15fr;
  gap:56px;
  padding:58px 0 48px;
}

.footer-col{
  min-width:0;
}

.footer-col:not(:last-child){
  border-right:1px dashed rgba(255,255,255,.32);
  padding-right:44px;
}

.footer-logo{
  width:92px;
  height:92px;
  object-fit:contain;
  margin-bottom:18px;
  background:#fff;
  border-radius:50%;
  padding:5px;
}

.site-footer h3{
  margin:0;
  color:#fff;
  font-size:25px;
  line-height:1.28;
  font-weight:900;
  text-transform:uppercase;
}

.footer-redline{
  display:block;
  width:56px;
  height:3px;
  background:#BB1E10;
  margin:13px 0 22px;
}

.footer-about p,
.footer-contact p{
  margin:0;
  color:#eef7ee;
  font-size:16px;
  line-height:1.65;
}

.footer-social{
  display:flex;
  gap:14px;
  margin-top:25px;
}

.footer-social a{
  width:42px;
  height:42px;
  border:1px solid rgba(255,255,255,.7);
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#fff;
  font-size:21px;
  font-weight:900;
  transition:.18s ease;
}

.footer-social a:hover{
  background:#BB1E10;
  border-color:#BB1E10;
}

.footer-links a{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  font-size:17px;
  line-height:1.25;
  padding:8px 0;
  transition:.18s ease;
}

.footer-links a::before{
  content:"›";
  font-size:30px;
  line-height:1;
  color:#fff;
}

.footer-links a:hover{
  color:#fff;
  transform:translateX(6px);
}

.contact-row{
  display:grid;
  grid-template-columns:46px 1fr;
  gap:14px;
  align-items:start;
  margin-bottom:19px;
}

.contact-row b{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#BB1E10;
  color:#fff;
  font-size:20px;
}

.contact-row strong{
  color:#fff;
}

.footer-bottom{
  border-top:4px solid #BB1E10;
  width:100%;
  min-height:74px;
  padding:14px 5%;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:24px;
  color:#fff;
  font-size:15px;
}

.footer-bottom img{
  height:54px;
  max-width:90px;
  object-fit:contain;
}

.footer-bottom span:last-child{
  text-align:right;
}

@media(max-width:900px){
  .footer-main{
    grid-template-columns:1fr;
    gap:34px;
    padding:42px 0;
  }

  .footer-col:not(:last-child){
    border-right:0;
    border-bottom:1px dashed rgba(255,255,255,.28);
    padding-right:0;
    padding-bottom:28px;
  }

  .footer-bottom{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-bottom span:last-child{
    text-align:center;
  }

  .footer-bottom img{
    margin:auto;
  }
}

/*==================================================
FINAL COMPACT GOVERNMENT FOOTER
==================================================*/

.site-footer{
    margin-top:42px !important;
}

.footer-main{
    padding:26px 0 18px !important;
    gap:28px !important;
}

.footer-col:not(:last-child){
    padding-right:18px !important;
}

.footer-logo{
    width:62px !important;
    height:62px !important;
    margin-bottom:8px !important;
}

.site-footer h3{
    font-size:18px !important;
    margin:0 !important;
    line-height:1.12 !important;
}

.footer-redline{
    width:40px !important;
    height:3px !important;
    margin:7px 0 10px !important;
}

.footer-about p,
.footer-contact p{
    font-size:13px !important;
    line-height:1.35 !important;
    margin:2px 0 !important;
}

.footer-links a{
    display:block !important;
    padding:3px 0 !important;
    font-size:13px !important;
    line-height:1.3 !important;
}

.footer-links a::before{
    font-size:15px !important;
    margin-right:6px !important;
}

.contact-row{
    margin-bottom:6px !important;
    gap:6px !important;
    grid-template-columns:22px 1fr !important;
}

.contact-row b{
    width:22px !important;
    height:22px !important;
    font-size:12px !important;
}

.footer-social{
    margin-top:10px !important;
    gap:6px !important;
}

.footer-social a{
    width:30px !important;
    height:30px !important;
    font-size:14px !important;
}

.footer-bottom{
    min-height:42px !important;
    padding:8px 4% !important;
    font-size:12px !important;
}

.footer-bottom img{
    height:34px !important;
}

@media(max-width:900px){

    .footer-main{
        padding:22px 18px !important;
        gap:22px !important;
    }

    .footer-col{
        text-align:left !important;
    }

    .footer-bottom{
        text-align:center !important;
    }

}


/* ==========================================================
   FINAL HEADER BALANCING
   Larger logos, closer to the title, compact government look
   ========================================================== */

.brand-strip{
    height:76px !important;
    display:grid !important;

    /* Bring logos closer to the centre */
    grid-template-columns:90px minmax(0,1fr) 90px !important;

    align-items:center !important;

    gap:8px !important;

    padding:4px 4.5% !important;
}

/* Logo containers */
.brand-logo-box{
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
}

/* Larger logos */
.brand-logo-box img{
    width:78px !important;
    height:78px !important;
    object-fit:contain !important;
}

/* Placeholder logos (before real uploads) */
.logo-placeholder{
    width:74px !important;
    height:74px !important;
    font-size:11px !important;
}

/* Title occupies more of the centre */
.brand-title{
    text-align:center !important;
    padding:0 4px !important;
}

.brand-title h1{
    margin:0 !important;

    font-size:clamp(30px,2.8vw,42px) !important;

    line-height:1.05 !important;

    letter-spacing:.03em !important;

    white-space:nowrap !important;

    font-weight:800 !important;

    color:#00451d !important;
}

/* Tablet */
@media (max-width:900px){

    .brand-strip{
        grid-template-columns:72px 1fr 72px !important;
        height:70px !important;
        gap:6px !important;
        padding:4px 12px !important;
    }

    .brand-logo-box img,
    .logo-placeholder{
        width:58px !important;
        height:58px !important;
    }

    .brand-title h1{
        font-size:24px !important;
    }

}

/* Mobile */
@media (max-width:600px){

    .brand-strip{
        grid-template-columns:56px 1fr 56px !important;
        height:64px !important;
    }

    .brand-logo-box img,
    .logo-placeholder{
        width:46px !important;
        height:46px !important;
    }

    .brand-title h1{
        font-size:18px !important;
        letter-spacing:.01em !important;
    }

}


/* ==========================================================
   FINAL HEADER POLISH
   Professional Government Layout
   ========================================================== */

/* Header container */
.site-header{
    background:#fff !important;
    box-shadow:0 2px 10px rgba(0,0,0,.08) !important;
}

/* Logo/title strip */
.brand-strip{
    height:82px !important;
    display:grid !important;

    /* Bring logos closer to the title */
    grid-template-columns:96px 1fr 96px !important;

    align-items:center !important;

    gap:10px !important;

    /* Less space on the sides, more breathing room below */
    padding:6px 5% 10px 5% !important;
}

/* Logo containers */
.brand-logo-box{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
}

/* Logo sizing */
.brand-logo-box img{
    width:74px !important;
    height:74px !important;
    object-fit:contain !important;
    display:block !important;
}

/* Placeholder logos */
.logo-placeholder{
    width:70px !important;
    height:70px !important;
}

/* Title block */
.brand-title{
    text-align:center !important;
    padding:0 8px !important;
}

.brand-title h1{
    margin:0 !important;
    color:#00451d !important;

    font-size:clamp(30px,2.8vw,40px) !important;

    font-weight:800 !important;

    letter-spacing:.02em !important;

    line-height:1.05 !important;

    white-space:nowrap !important;
}

/* Navigation bar */
.mainnav{
    margin-top:0 !important;
    height:52px !important;
    border-top:1px solid #f1f1f1 !important;
}

/* Compact menu */
.menu{
    height:52px !important;
    gap:34px !important;
}

.menu>li>a{
    height:52px !important;
    font-size:15px !important;
    padding:0 6px !important;
}

/* Tablet */
@media(max-width:900px){

    .brand-strip{
        height:74px !important;
        grid-template-columns:72px 1fr 72px !important;
        padding:6px 14px 8px !important;
    }

    .brand-logo-box img,
    .logo-placeholder{
        width:58px !important;
        height:58px !important;
    }

    .brand-title h1{
        font-size:23px !important;
    }
}

/* Mobile */
@media(max-width:600px){

    .brand-strip{
        height:66px !important;
        grid-template-columns:56px 1fr 56px !important;
        padding:5px 10px 8px !important;
    }

    .brand-logo-box img,
    .logo-placeholder{
        width:46px !important;
        height:46px !important;
    }

    .brand-title h1{
        font-size:17px !important;
        letter-spacing:0 !important;
    }
}

