:root{
  --brand-red:#d3142a;
  --brand-green:#0a7c48;
  --ink:#121212;
  --border:#e8e8e8;
  --chip-bg:#f0f0f0;
  --chip-h:34px;
}
*{box-sizing:border-box}
body{margin:0;font-family:"Inter",system-ui,sans-serif;color:var(--ink);background:#fff}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{max-width:1200px;margin:0 auto;padding:0 16px}


.section-title{
  text-align:center;
  margin-bottom:24px;
  font-size:clamp(28px,3vw,40px);
  font-weight:800;
  color:#000;
  letter-spacing:.01em;
}

.hero--bg{
  position: relative;
  padding: 250px 0;
  overflow: clip;
}

.hero__bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}


.hero__content--overlay{ position:relative; z-index:1; }

.hero__text h1{ font-size:clamp(36px,4vw,60px); line-height:1.1; font-weight:700;color:#ffffff ;text-shadow: 0 3px 8px rgba(0, 0, 0, 0.55);}
.hero__text p{ color:#ffffff; margin:16px 0 28px; font-size:20px; line-height:1.6; text-shadow: 0 3px 3px #111;}



.btn{display:inline-flex;align-items:center;justify-content:center;padding:12px 18px;border-radius:8px;font-weight:600;transition:.2s;cursor:pointer}
.btn-primary{background:var(--brand-red);color:#fff;border:1px solid var(--brand-red)}
.btn-primary:hover{background:#b40f22}
.btn-outline{background:#fff;color:#121212;border:1px solid var(--border)}
.btn-outline:hover{border-color:var(--brand-red)}


.announcements--xl{background:#fff;border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:80px 0}
.ann-head{display:flex;flex-direction:column;align-items:center;margin-bottom:40px}
.ann-title h2{margin:0}

.modal{position:fixed;inset:0;display:none;align-items:center;justify-content:center;background:rgba(0,0,0,.6);z-index:3000}
.modal__card{background:#fff;border-radius:14px;padding:28px 32px;max-width:600px;width:90%;box-shadow:0 15px 50px rgba(0,0,0,.3);position:relative;animation:modalIn .3s ease-out}
.modal__close{position:absolute;top:10px;right:14px;background:#f4f4f4;border:none;font-size:22px;width:32px;height:32px;border-radius:8px;cursor:pointer}
.modal__close:hover{background:#e9e9e9}
@keyframes modalIn{from{transform:translateY(10px);opacity:.8}to{transform:translateY(0);opacity:1}}

.quick-access{padding:60px 0;background:#fafafa}
.quick-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:18px;text-align:center}
.quick-item{background:#fff;border:1px solid var(--border);border-radius:12px;padding:28px 16px;transition:.2s;display:flex;flex-direction:column;align-items:center;gap:10px;color:#000;font-weight:600}
.quick-item:hover{border-color:var(--brand-green);transform:translateY(-3px)}
.quick-item img{width:40px;height:40px;filter:brightness(0) saturate(100%)}


.about{background:#fff;padding:80px 0}
.about__grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center}
.about__image img{width:100%;border-radius:12px;object-fit:cover}
.about__text p{color:#555;line-height:1.7;margin-bottom:24px}
.center-btn{display:flex;justify-content:center}
@media (max-width:800px){
  .about__grid{grid-template-columns:1fr;text-align:center}
  .about__image{order:-1}
}

.whyus{background:#fafafa;padding:40px 0}
.whyus__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.whyus__card{background:#fff;border:1px solid var(--border);border-radius:12px;padding:18px;transition:.2s;position:relative;z-index:1;transform:translateZ(0)}
.whyus__card:hover{border-color:var(--brand-green);transform:translateY(-2px)}
.whyus__card h3{margin:0 0 8px;color:var(--brand-red)}


.stats{background:#fff;border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:80px 0}
.stats__grid{display:grid;grid-template-columns:repeat(4,1fr);text-align:center;gap:20px}
.stat .num{font-size:36px;font-weight:800;color:var(--brand-red);margin-bottom:8px}
.stat .label{color:#6a6a6a;font-size:15px}
.num--rta{color:var(--brand-red)}


.partners{background:#fafafa;border-top:1px solid var(--border);padding:40px 0}
.partners__grid{display:grid;grid-template-columns:repeat(5,1fr);gap:20px;align-items:center}
.partner-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  height: 110px;
  overflow: hidden;               
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
}

.partner-card:hover {
  border-color: var(--brand-green);
  transform: translateY(-2px);
}


.partner-card img {
  width: 100%;
  object-fit: cover;               
  object-position: center;         
  display: block;
}
.partner-card a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
}


.branches-flip{padding:60px 0;background:#fff}

.flip-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:20px;
  align-items:stretch;
}

.flip-card{position:relative;perspective:1000px}
.flip-toggle{position:absolute;inset:0;opacity:0;pointer-events:none}

.flip-inner{
  position:relative; width:100%; height:0;
  padding-top:132%; 
  transform-style:preserve-3d;
  transition:transform .7s ease;
}
.flip-toggle:checked + .flip-inner{transform:rotateY(180deg)}

.flip-face{
  position:absolute; inset:0;
  border:1px solid var(--border);
  border-radius:12px; overflow:hidden;
  background:#fff;
  display:flex; flex-direction:column; justify-content:space-between;
  backface-visibility:hidden; -webkit-backface-visibility:hidden;
}
.flip-card:hover .flip-face{border-color:#0a7c48;transition:.3s}

.flip-front{display:flex;flex-direction:column}
.flip-front img{
  width:100%; height:58%; object-fit:cover; display:block;  object-position: 50% 35%; aspect-ratio: 16 / 10;
}
.flip-caption{
  padding:14px; text-align:left; background:rgba(255,255,255,.96);
}
.flip-caption h3{font-size:18px;color:black;margin:0 0 6px}
.flip-caption p{color:#444;font-size:14px;margin:0 0 10px}

.hours-block{margin:8px 0 10px;text-align:left}
.hours-title{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.04em;color:#000;margin-bottom:4px}
.hours-list{list-style:none;margin:0;padding:0;font-size:13px;color:#555;line-height:1.45}
.hours-list li{margin-bottom:2px}

.branch-actions{display:flex;gap:10px;justify-content:center}
.branch-actions .btn{padding:8px 12px;font-size:13px; border: none !important;
  box-shadow: none !important;background: transparent;}
.branch-actions .btn:hover,
.branch-actions .btn:focus {
  color: var(--brand-red) !important;
  text-decoration: underline;
  outline: none;
}

.flip-back{transform:rotateY(180deg);display:flex;flex-direction:column}
.flip-back iframe{
  border:0; display:block; width:100%;
  flex:1; min-height:240px;
}
.flip-actions{
  display:flex; gap:10px; justify-content:center;
  padding:10px 12px; border-top:1px solid var(--border); background:#fff;
}

.flip-toggle:checked + .flip-inner{pointer-events:none}
.flip-toggle:checked + .flip-inner .flip-back,
.flip-toggle:checked + .flip-inner .flip-back *{pointer-events:auto}

.coming-soon{display:grid;place-items:center;flex:1;background:#fafafa;color:#555;font-size:14px;padding:20px}

.flip-back .btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: transparent !important;
  color: #000 !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  font-weight: 600;
  cursor: pointer;
}
.flip-back .btn:hover {
  color: var(--brand-red) !important;
  text-decoration: underline;
}

@media (max-width:1000px){
  .hero--bg{padding:120px 0}
  .quick-grid{grid-template-columns:repeat(3,1fr)}
  .partners__grid{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:700px){
  .hero--bg{padding:100px 0}
  .quick-grid{grid-template-columns:repeat(2,1fr)}
  .whyus__grid{grid-template-columns:1fr}
  .stats__grid{grid-template-columns:repeat(2,1fr)}
  .flip-grid{grid-template-columns:1fr}
  .partners__grid{grid-template-columns:repeat(2,1fr)}
  .foot-grid{grid-template-columns:1fr;text-align:center}
  .social-links{justify-content:center}
}

/* Make the back face full and uncropped */
.flip-back {
  display: flex;
  flex-direction: column;
  position: absolute;
  inset: 0;
  height: 100%;
}

/* Remove map cropping completely */
.map-crop {
  width: 100%;
  height: 100%;
  overflow: visible !important;
}

/* Make iframe fill the card */
.flip-back iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  flex: 1;
}
.stat:nth-child(1) .num::after,
.stat:nth-child(2) .num::after{
  content: "+";
  margin-left: 4px;
  font-weight: 700;
}
/* ===== FIX STATS OVERFLOW ON VERY SMALL PHONES (≤ 375px) ===== */
@media (max-width: 375px) {

  .stats__grid {
    grid-template-columns: 1fr !important; /* 1 per row */
    gap: 14px !important;
  }

  .num {
    font-size: 28px !important;
  }

  .label {
    font-size: 14px !important;
  }
}
/* =========================================================
   ANNOUNCEMENT IMAGE POPUP (FINAL)
   ========================================================= 

/* Force popup above everything 
.announce-modal {
  z-index: 99999 !important;
}

/* Center wrapper
.announce-wrap {
  position: relative;
  max-width: 640px;
  width: 90%;
  margin: auto;
  background: transparent;
  border-radius: 16px;
  animation: modalIn 0.3s ease-out;
}

/* Announcement image 
#announceImg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

/* Close button (very clear) 
.announce-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  border: none;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.announce-close:hover,
.announce-close:focus {
  background: var(--brand-red);
  outline: none;
}

/* Prevent image drag highlight 
#announceImg {
  user-select: none;
  -webkit-user-drag: none;
}

/* Mobile optimisation 
@media (max-width: 600px) {
  .announce-wrap {
    width: 90%;
  }

  .announce-close {
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.6);
}

@keyframes modalIn {
  from {
    transform: translateY(10px);
    opacity: 0.85;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}*/
/* =========================================================
   NEWS CAROUSEL (FINAL – SIDE ARROWS, NO OVERLAP)
   ========================================================= */

/* Wrapper */
.ann-carousel {
  position: relative;
  display: flex;
  align-items: center;
}

/* Grid */
.ann-grid {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0;
}

.ann-grid::-webkit-scrollbar {
  display: none;
}

/* Cards */
.ann-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: .3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,.05);
}

.ann-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-green);
}

/* Images */
.ann-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Card body */
.ann-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.ann-h3 {
  margin: 0;
  font-size: 18px;
  color: #000;
}

.ann-p {
  margin: 0 0 6px;
  color: #555;
  line-height: 1.55;
  font-size: 14px;
}

.line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ann-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ann-date {
  font-size: 13px;
  color: #666;
}

.ann-btn {
  font-size: 14px;
  padding: 8px 16px;
}

/* =========================================================
   ARROWS (SIDE, CENTERED, CLEAN)
   ========================================================= */

.ann-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 26px;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 20;
  transition: .2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.ann-arrow:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
}

/* Position arrows OUTSIDE cards */
.ann-arrow--left {
  left: -26px;
}

.ann-arrow--right {
  right: -26px;
}

/* Allow arrows to be visible */
.announcements--xl {
  overflow: visible;
}

/* =========================================================
   MOBILE BEHAVIOR
   ========================================================= */

@media (max-width: 768px) {
  .ann-arrow {
    display: none;
  }

  .ann-card {
    flex: 0 0 85%;
  }
}

.ann-grid-wrap {
  position: relative;
}
/* =========================================================
   ANNOUNCEMENT VIDEO POPUP
   ========================================================= */

.announce-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99999 !important;
}

.announce-wrap {
  position: relative;
  width: min(92vw, 720px);
  max-height: 90vh;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 16px;
  animation: modalIn 0.3s ease-out;
}

/* Video */
#announceVideo {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 90vh;
  height: auto;
  border-radius: 16px;
  background: #000;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

/* Optional: style video controls area a little nicer on dark background */
#announceVideo:focus {
  outline: none;
}

/* Close button */
.announce-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  border: none;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.announce-close:hover,
.announce-close:focus {
  background: var(--brand-red);
  outline: none;
}

/* Animation */
@keyframes modalIn {
  from {
    transform: translateY(10px);
    opacity: 0.85;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .announce-wrap {
    width: 94%;
    max-height: 85vh;
  }

  #announceVideo {
    max-height: 85vh;
    border-radius: 12px;
  }

  .announce-close {
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
