    :root{
      --text:#101418;
      --muted:#5b6470;
      --bg:#f6f7f9;
      --card:#ffffff;
      --line:#e6e8ec;
      --brand:#7a0f17;   /* deep red */
      --brand2:#b31b27;  /* lighter red */
      --accent:#f2c84b;  /* warm gold */
      --radius:18px;
      --shadow:0 10px 24px rgba(16,20,24,.08);
      --max:1100px;
    }
    *{box-sizing:border-box}
    body{
      margin:0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
      color:var(--text);
      background: var(--bg);
      line-height:1.6;
    }
    a{color:inherit}
    .wrap{max-width:var(--max); margin:0 auto; padding:0 16px}

    /* Top bar */
    .topbar{
      background: #122774;
      color:#fff;
      font-size:13px;
    }
    .topbar .wrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:10px 16px;
    }
    .topbar a{color:#fff; text-decoration:none}
    .topbar .right{
      display:flex; gap:14px; align-items:center; flex-wrap:wrap;
    }
    .icon{
      display:inline-flex; align-items:center; gap:6px;
      opacity:.95;
    }
    .dot{
      width:0px; height:0px; border-radius:50%;
      background: var(--accent);
      display:inline-block;
    }

    /* Header / nav */
    header{
      position: sticky;
      top:0;
      z-index:50;
      background: rgba(246,247,249,.92);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--line);
    }
    .header-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding: 12px 0;
    }
    .brand{
      display:flex; align-items:center; gap:12px;
      text-decoration:none;
      min-width: 220px;
    }
    .brand img{
      height:46px;
      width:auto;
      display:block;
    }
    .brand .name{
      font-weight:800;
      letter-spacing:.2px;
      line-height:1.15;
    }
    .brand .name small{
      display:block;
      font-weight:600;
      color:var(--muted);
      letter-spacing:0;
      margin-top:2px;
      font-size:12px;
    }

    nav{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .navlinks{
      display:flex;
      align-items:center;
      gap:4px;
      list-style:none;
      padding:0;
      margin:0;
    }
    .navlinks a{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 12px;
      border-radius:12px;
      text-decoration:none;
      color:var(--text);
      font-weight:700;
      font-size:14px;
    }
    .navlinks a:hover{
      background:#fff;
      box-shadow: 0 4px 12px rgba(0,0,0,.06);
    }

    /* Dropdown */
    .dropdown{position:relative}
    .dropdown > a:after{
      content:"▾";
      font-size:12px;
      opacity:.7;
    }
    .menu{
      position:absolute;
      left:0;
      top: 100%; 
      margin-top: 0;    
      min-width: 220px;
      background: #fff;
      border:1px solid var(--line);
      border-radius: 14px;
      box-shadow: var(--shadow);
      padding:8px;
      display:none;
    }
    .menu a{
      display:block;
      padding:10px 10px;
      border-radius: 10px;
      font-weight:700;
    }
    .menu a:hover{background: #f3f4f6}
    .dropdown:hover .menu{display:block}

    /* Header CTAs */
    .cta{
      display:flex; align-items:center; gap:10px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:10px 14px;
      border-radius: 999px;
      border:1px solid var(--line);
      background:#fff;
      text-decoration:none;
      font-weight:800;
      font-size:14px;
      box-shadow: 0 6px 14px rgba(0,0,0,.06);
    }
    .btn.primary{
      background: linear-gradient(135deg, var(--brand), var(--brand2));
      color:#fff;
      border-color: rgba(0,0,0,.05);
    }
    .btn.primary:hover{filter:brightness(1.03)}
    .btn.whatsapp{
      border-color: rgba(37,211,102,.35);
    }

    /* Mobile nav */
    .burger{
      display:none;
      width:44px; height:44px;
      border-radius: 12px;
      border:1px solid var(--line);
      background:#fff;
      box-shadow: 0 6px 14px rgba(0,0,0,.06);
      cursor:pointer;
    }
    .burger span{
      display:block;
      width:18px;
      height:2px;
      background:#111;
      margin:4px auto;
      border-radius:2px;
    }
    @media (max-width: 980px){
      .cta{display:none}
      .burger{display:inline-block}
      .navlinks{
        position: fixed;
        left: 16px;
        right: 16px;
        top: 78px;
        background:#fff;
        border:1px solid var(--line);
        border-radius: 16px;
        box-shadow: var(--shadow);
        padding: 10px;
        display:none;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
      }
      .navlinks.open{display:flex}
      .dropdown:hover .menu{display:none} /* hover doesn't work well on mobile */
      .menu{
        position: static;
        box-shadow: none;
        border: none;
        padding: 0 0 6px 0;
        display:none;
      }
      .dropdown.open .menu{display:block}
      .dropdown > a{justify-content:space-between}
    }

   .dropdown{
     position: relative;
   }

   /* Invisible hover bridge between the nav link and dropdown menu */
   .dropdown:after{
     content:"";
     position:absolute;
     left:0;
     right:0;
     top:100%;
     height:12px;
   }

    /* Hero */
   .hero{
     background:
    url("../gifs/background21.jpg") center -270px / cover no-repeat;
     color:#fff;
     padding: 0 0 6px;
     position: relative;
   }
    .hero-inner{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 18px;
      align-items: start;
      padding-top: 299px;
    }

    .hero-inner > div:first-child{
      background: linear-gradient(
        180deg,
        rgba(0,0,0,0.0) 0%,
        rgba(0,0,0,0.35) 30%,
        rgba(0,0,0,0.55) 100%
      );
      padding: 24px 24px 20px;
      border-radius: 18px;
    }

@media (max-width: 768px){
  .hero-inner{
    padding-top: 220px;
  }
  .hero-inner > div:first-child{
    padding: 18px 16px;
  }
}

@media (max-width: 980px){
      .hero-inner{grid-template-columns: 1fr}
}

    .hero h1{
      margin:0 0 10px 0;
      font-size: clamp(28px, 3.8vw, 46px);
      line-height:1.1;
      letter-spacing:.2px;
    }
    .hero p{
      margin:0 0 12px 0;
      max-width: 68ch;
      font-size: 16px;
      opacity:.96;
    }
    .hero .badges{
      margin-top: 14px;
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.18);
      font-weight: 800;
      font-size: 13px;
    }
    .hero-actions{
      margin-top: 16px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .hero-actions .btn{box-shadow:none}
    .btn.light{
      background: rgba(255,255,255,.12);
      border-color: rgba(255,255,255,.22);
      color:#fff;
    }
    .btn.light:hover{background: rgba(255,255,255,.16)}

.darkbox{
  background: rgba(0,0,0,0.68) !important;
  padding: 26px 28px 24px;
  border-radius: 18px;
  max-width: 680px;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(2px);
  opacity: 0.9 !important;
  z-index: 5;
}


    /* Quick quote card */
    .card{
      background: rgba(255,255,255,.96);
      color: #111;
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,.55);
      box-shadow: 0 14px 30px rgba(0,0,0,.18);
      padding: 16px 16px;
    }
    .card h2{
      margin:0 0 8px 0;
      font-size: 18px;
    }
    .card p{margin:0 0 10px 0; color:#333}
    .card .mini{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      margin-top: 10px;
    }
    .mini a{
      display:block;
      text-decoration:none;
      border:1px solid var(--line);
      background:#fff;
      padding:10px 10px;
      border-radius: 14px;
      font-weight: 900;
      text-align:center;
    }
    .mini a:hover{background:#f5f6f7}
    .mini small{display:block; font-weight:700; color:var(--muted); margin-top:3px}

    /* Sections */
    main{padding: 22px 0 50px}
    .section{
      margin-top: 2px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 18px 18px;
    }
    .section h2{
      margin:0 0 10px 0;
      font-size: 20px;
    }
    .cols{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      align-items:start;
    }
    @media (max-width: 980px){
      .cols{grid-template-columns:1fr}
    }

    .services{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 10px;
    }
    @media (max-width: 980px){
      .services{grid-template-columns:1fr}
    }
    .service{
      border:1px solid var(--line);
      background:#fff;
      border-radius: 16px;
      padding: 14px 14px;
      text-decoration:none;
      display:block;
    }
    .service:hover{box-shadow: 0 10px 20px rgba(0,0,0,.08)}
    .service h3{margin:0 0 6px 0; font-size:16px}
    .service p{margin:0; color:var(--muted); font-size:14px}

    .ticklist{
      margin: 10px 0 0 0;
      padding: 0;
      list-style: none;
    }
    .ticklist li{
      margin: 8px 0;
      padding-left: 26px;
      position: relative;
      color: #222;
    }
    .ticklist li:before{
      content:"✓";
      position:absolute;
      left:0; top:0;
      width:18px; height:18px;
      border-radius: 6px;
      background: #e8f5e9;
      border: 1px solid #b7dfbf;
      color: #1b5e20;
      font-weight: bold;
      font-size: 12px;
      line-height: 18px;
      text-align: center;
    }

    /* Contact band */
    .contactband{
      margin-top: 16px;
      background: linear-gradient(135deg, #ffffff, #fff7de);
      border: 1px solid #f0dfb0;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 18px 18px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items:center;
    }
    @media (max-width: 980px){
      .contactband{grid-template-columns:1fr}
    }
    .contactband h2{margin:0 0 8px 0}
    .contactbox{
      background:#fff;
      border:1px solid var(--line);
      border-radius: 16px;
      padding: 14px 14px;
    }
    .contactbox p{margin:6px 0; color:#222}
    .contactbox a{color:var(--brand); font-weight:900; text-decoration:none}
    .contactbox a:hover{text-decoration:underline}

    .barbox{
      background:#fff;
      border:1px solid var(--line);
      border-radius: 16px;
      padding: 14px 14px;
    }
    .barbox p{margin:6px 0; color:#222}
    .barbox a{color:var(--brand); font-weight:900; text-decoration:none}
    .barbox a:hover{text-decoration:underline}

    footer{
      margin-top: 18px;
      padding: 18px 0 30px;
      color: #666;
      font-size: 13px;
    }
    .foot{
      border-top: 1px solid var(--line);
      padding-top: 14px;
      display:flex;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }
    .navlinks a.nav-cta{
      background: linear-gradient(135deg, var(--brand), var(--brand2));
      color:#fff !important;
      border: 1px solid rgba(0,0,0,.05);
      box-shadow: 0 8px 18px rgba(0,0,0,.12);
    }
    .navlinks a.nav-cta:hover{
      filter: brightness(1.03);
      background: linear-gradient(135deg, var(--brand), var(--brand2));
    }
    .service-img{
      position: relative;
      overflow: hidden;
      min-height: 170px;
      background: #fff;
    }
    .service-img:before{
      content:"";
      position:absolute;
      inset:0;
      background:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.45)),
    var(--thumb) center/cover no-repeat;
      transform: scale(1.02);
      transition: transform .25s ease;
    }
    .service-img:hover:before{ transform: scale(1.06); }

    .service-overlay{
      position: relative;
      z-index: 1;
      height: 100%;
      padding: 14px 14px;
      display:flex;
      flex-direction: column;
      justify-content: flex-end;
    }
    .service-img h3{ color:#fff; margin:0 0 6px 0; }
    .service-img p{ color: rgba(255,255,255,.92); margin:0; }
    .mapwrap{
      margin-top: 10px;
      border: 1px solid var(--line);
      border-radius: 16px;
      overflow: hidden;
      background: #fff;
      box-shadow: var(--shadow);
    }

    .mapwrap iframe{
      width: 100%;
      height: 360px;
      border: 0;
      display: block;
    }

@media (max-width: 980px){
  .mapwrap iframe{ height: 300px; }
}

/* Mobile hero adjustment */
@media (max-width: 768px){
  .hero{
    padding: 28px 0 24px;   /* reduce vertical padding */
    background-position: center top; /* shows more useful part of image */
    min-height: auto;
    max-height: 490px;
  background:
    url("../gifs/background21.jpg") center -50px / cover no-repeat;
  }
  .hero-inner{
    gap: 7px;
  }
  .hero h1{
    font-size: 26px;
    line-height: 1.15;
  }
  .hero p{
    font-size: 15px;
  }
}

@media (max-width: 768px){
  /* Ensure hero has enough space below */
  .hero{
    padding-bottom: 36px;
  }
  /* Ensure quote card sits properly */
  .hero .card{
    margin-top: 18px;
  }
  /* Push next section down clearly */
  main{
    margin-top: 10px;
  }
}
/* ---- FIX: stop Services overlapping the hero quote card on mobile ---- */
.hero{ position: relative; z-index: 5; overflow: auto; }     /* contains any floats */
.hero-inner{ position: relative; z-index: 6; }
.hero .card{ position: relative; z-index: 7; }               /* keeps card above */
main{ position: relative; z-index: 1; clear: both; }         /* clears floats above */
/* force the first section to sit below the hero (override any negative margins) */
#our-services{
  clear: both;
  margin-top: 18px !important;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px){
  #our-services{ margin-top: 22px !important; }
}

@media (max-width: 768px){
  .topbar .wrap{
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .topbar .right{
    gap: 2px;
    font-size: 13px;
  }
  .topbar .right .icon{
    line-height: 1.5;
  }
}

    .hero LI{color:white;}

.cookie-banner{
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 9999;
}

.cookie-inner{
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255,255,255,0.98);
  border: 1px solid #e6e8ec;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  padding: 14px 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.cookie-title{
  font-weight: 900;
  margin-bottom: 4px;
  color: #111;
}

.cookie-desc{
  font-size: 13px;
  color: #333;
  line-height: 1.35;
}

.cookie-desc a{
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
}
.cookie-desc a:hover{ text-decoration: underline; }

.cookie-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.cookie-btn{
  white-space: nowrap;
  cursor: pointer;
}

@media (max-width: 768px){
  .cookie-inner{
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-actions{
    justify-content: stretch;
  }
  .cookie-actions .cookie-btn{
    width: 100%;
  }
}



.select{
  width: 100%;
  padding: 12px 14px;

  font-size: 15px;
  font-family: inherit;

  border: 1px solid #ccd2d8;
  border-radius: 10px;

  background: #fff;
  color: #111;

  outline: none;

  transition: border-color .18s ease,
              box-shadow .18s ease,
              background .18s ease;

  box-sizing: border-box;
}

/* focus */
.select:focus{
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(122,15,23,0.12);
}

/* textarea version */
textarea.select{
  min-height: 120px;
  resize: vertical;
}

/* select dropdown version */
select.select{
  cursor: pointer;
}


.button{
  display: inline-block;

  background: var(--brand);
  color: #fff;

  font-weight: 800;
  font-size: 15px;

  padding: 12px 22px;

  border: none;
  border-radius: 999px;

  cursor: pointer;

  transition: transform .15s ease,
              box-shadow .15s ease,
              background .15s ease;
}

/* hover */
.button:hover{
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

/* active */
.button:active{
  transform: translateY(0);
  box-shadow: none;
}

/* full width version */
.button.full{
  width: 100%;
}

/* Improve mobile scrolling when swiping over hero/buttons */
.hero,
.hero *{
  touch-action: pan-y;
}

button,
.btn,
.button,
input[type="submit"],
input[type="button"]{
  cursor: pointer;
}

.whatsapp-float{
  position: fixed;

  right: 16px;
  bottom: 16px;

  width: 56px;
  height: 56px;

  background: #25D366;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 6px 18px rgba(0,0,0,0.25);

  z-index: 999;

  transition: transform .2s ease,
              box-shadow .2s ease;

  cursor: pointer;
}

/* hover (desktop only) */
.whatsapp-float:hover{
  transform: scale(1.08);
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
}

/* only show on mobile */
@media (min-width: 769px){
  .whatsapp-float{
    display: none;
  }
}

/* move above cookie banner if present */
.cookie-banner:not([hidden]) ~ .whatsapp-float{
  bottom: 90px;
}



/* =========================================
   Gallery images (service pages)
   ========================================= */

.gallerypic{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 10px 0;
  padding: 0;
}

.gallerypic a{
  display: block;
  text-decoration: none;
  color: inherit;
}

.gallerypic img{
  width: 100%;
  /* Mobile: edge-to-edge feel */
  max-width: 100vw;
  height: auto;

  /* Desktop cap */
  max-width: 449px;

  display: block;
  margin: 0 auto;

  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.14);
  border: 1px solid rgba(0,0,0,0.08);

  cursor: zoom-in;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.gallerypic img:hover{
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 34px rgba(0,0,0,0.18);
  filter: saturate(1.03);
}

/* Make it feel “full screen” on mobiles (edge-to-edge) */
@media (max-width: 700px){
  .gallerypic{
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .gallerypic img{
    max-width: 100%;
    border-radius: 12px;
  }
}


  /* Lightbox overlay */
  #lightboxOverlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    z-index: 9999;
  }
  #lightboxOverlay.open{
    display: flex;
  }
  #lightboxOverlay .lb-img{
    max-width: min(100%, 1100px);
    max-height: 92vh;
    width: auto;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 18px 55px rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.12);
  }
  #lightboxOverlay .lb-close{
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 28px;
    line-height: 44px;
    cursor: pointer;
  }
  #lightboxOverlay .lb-close:hover{
    background: rgba(255,255,255,0.18);
  }

  /* Lock background scroll when lightbox is open */
  .lb-lock, .lb-lock body{
    overflow: hidden;
  }

#lightboxOverlay .lb-figure{
  margin: 0;
  text-align: center;
  max-width: 95%;
}

#lightboxOverlay .lb-caption{
  margin-top: 12px;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
