/* =========================================================================
   css/site-updates.css
   Sitewide additions layered on top of css/style.css. Linked from every
   page (right after style.css) so header-fix / footer / contact-FAB stay
   in one place instead of being duplicated per page.
   ========================================================================= */

:root{
  --brand-navy:#000746;         /* header-top / footer / header CTA background - the site's 2026 blue */
  --brand-navy-deep:#090c5e;
  --brand-navy-tint:#eef1ff;
  --brand-ink:#1c2033;
  --brand-grey-50:#f6f7fb;
  --brand-grey-200:#e3e6f0;
  --brand-grey-400:#aab0c4;
  --brand-grey-600:#6b7186;
  --brand-white:#ffffff;
  --brand-whatsapp:#25d366;
  --brand-whatsapp-dark:#1fb857;
  /* Same 2026 blue, alias used for the Call button and (separately, inside
     their own <style> blocks) online-booking.html and makebooking.php. */
  --brand-2026:#000746;
  --brand-2026-light:#141c66;
  --brand-2026-dark:#000330;
}

/* -------------------------------------------------------------------------
   Header "Book a Cab" hover-bug fix
   The theme's .btn-style-one relies on a ::after "sweep" with a negative
   z-index to swap the button to a light fill on hover. This button never
   gets its own stacking context, so that sweep paints BEHIND the button's
   own background instead of on top of it - only the hover text colour
   (navy) took effect, over an unchanged navy background, so the label
   effectively vanished on hover. Fixed here with a simple, reliable
   background/text swap instead of depending on the fragile sweep.
   NOTE: the hover state must NOT be white - .header-lower (the bar this
   button sits in) is white, so a white button would disappear into it the
   same way. Hovering instead swaps to a darker, distinct shade so the
   button always stays visible against the white header.
   Scoped to the header CTA only - no other buttons on the site are
   touched.
   ------------------------------------------------------------------------- */
.main-header .outer-box .btn-box .theme-btn.btn-style-one{
  background-color:var(--brand-navy);
  color:var(--brand-white);
  transition:background-color .2s ease, color .2s ease, box-shadow .2s ease, transform .15s ease;
}
.main-header .outer-box .btn-box .theme-btn.btn-style-one::before,
.main-header .outer-box .btn-box .theme-btn.btn-style-one::after{
  content:none;
}
.main-header .outer-box .btn-box .theme-btn.btn-style-one:hover,
.main-header .outer-box .btn-box .theme-btn.btn-style-one:focus-visible{
  background-color:var(--brand-2026-light);
  color:var(--brand-white);
  box-shadow:0 4px 12px rgba(0,7,70,.35);
  outline:none;
}
.main-header .outer-box .btn-box .theme-btn.btn-style-one:active{
  transform:scale(.96);
}

/* -------------------------------------------------------------------------
   Call + WhatsApp floating action buttons (replaces the old single
   WhatsApp-only .whatsapp-float button, same bottom-right corner).
   ------------------------------------------------------------------------- */
.contact-fab-stack{
  position:fixed; right:20px; bottom:20px; z-index:9999;
  display:flex; flex-direction:column; align-items:center; gap:10px;
}
.contact-fab{
  width:58px; height:58px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 10px rgba(0,0,0,.25);
  transition:transform .2s ease, box-shadow .2s ease, background-color .2s ease;
  text-decoration:none;
}
.contact-fab svg{ width:26px; height:26px; display:block; }
.contact-fab:hover,
.contact-fab:focus-visible{
  transform:scale(1.08);
  box-shadow:0 6px 16px rgba(0,0,0,.32);
  outline:none;
}
.contact-fab:active{ transform:scale(.94); }
.contact-fab.fab-call{ background-color:var(--brand-2026); }
.contact-fab.fab-call:hover{ background-color:var(--brand-2026-dark); }
.contact-fab.fab-whatsapp{ background-color:var(--brand-whatsapp); }
.contact-fab.fab-whatsapp:hover{ background-color:var(--brand-whatsapp-dark); }
.contact-fab i{ color:#fff; font-size:24px; line-height:1; }
@media (max-width:480px){
  .contact-fab-stack{ right:14px; bottom:14px; gap:8px; }
  .contact-fab{ width:50px; height:50px; }
  .contact-fab svg{ width:22px; height:22px; }
}
/* The page-specific "Share" float (online-booking.html / makebooking.php
   only) now lives inside .contact-fab-stack itself as its first item, so
   it shares the stack's own `gap` instead of needing a separately
   hand-tuned `bottom` value here. */

/* -------------------------------------------------------------------------
   Footer v2 - clean corporate footer, replaces the old widgets-section /
   footer-bottom markup sitewide.
   ------------------------------------------------------------------------- */
.site-footer{
  background-color:var(--brand-navy);
  color:#c7cbef;
  font-family:'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
.site-footer .footer-inner{
  max-width:1200px; margin:0 auto; padding:60px 20px 36px;
  display:grid; grid-template-columns:1.3fr 1fr 1fr 1.2fr; gap:36px;
}
.site-footer .footer-col h4{
  color:var(--brand-white); font-size:15px; font-weight:700;
  text-transform:uppercase; letter-spacing:.5px; margin:0 0 18px;
}
.site-footer .footer-about .logo{ display:inline-block; margin-bottom:14px; }
.site-footer .footer-about .logo img{
  width:150px; height:auto;
  /* Force the logo to render white on the navy footer regardless of the
     source file's own colours. */
  filter:brightness(0) invert(1);
}
.site-footer .footer-about p{ font-size:14px; line-height:1.7; margin:0 0 14px; color:#b7bce8; }
.site-footer .footer-about address{ font-style:normal; font-size:13.5px; line-height:1.6; color:#b7bce8; }
.site-footer ul{ list-style:none; margin:0; padding:0; }
.site-footer .footer-links li{ margin-bottom:11px; }
.site-footer .footer-links a{
  color:#c7cbef; text-decoration:none; font-size:14px;
  transition:color .2s ease, padding-left .2s ease;
}
.site-footer .footer-links a:hover{ color:var(--brand-white); padding-left:4px; }
.site-footer .footer-contact li{
  display:flex; gap:10px; align-items:flex-start; margin-bottom:14px; font-size:14px; color:#c7cbef;
}
.site-footer .footer-contact li i{ margin-top:3px; color:var(--brand-white); width:16px; text-align:center; }
.site-footer .footer-contact a{ color:#c7cbef; text-decoration:none; }
.site-footer .footer-contact a:hover{ color:var(--brand-white); }
.site-footer .footer-social{ display:flex; gap:10px; margin-top:6px; }
.site-footer .footer-social a{
  width:36px; height:36px; border-radius:50%; background-color:rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center; color:var(--brand-white);
  text-decoration:none; transition:background-color .2s ease, color .2s ease, transform .2s ease;
}
.site-footer .footer-social a:hover{
  background-color:var(--brand-white); color:var(--brand-navy); transform:translateY(-2px);
}
.site-footer .footer-bottom-bar{ border-top:1px solid rgba(255,255,255,.15); }
.site-footer .footer-bottom-inner{
  max-width:1200px; margin:0 auto; padding:18px 20px;
  display:flex; flex-wrap:wrap; gap:10px; justify-content:space-between; align-items:center;
  font-size:13px; color:#a6abda;
}
@media (max-width:991px){
  .site-footer .footer-inner{ grid-template-columns:1fr 1fr; }
}
@media (max-width:576px){
  .site-footer .footer-inner{ grid-template-columns:1fr; gap:30px; padding:44px 20px 28px; }
  .site-footer .footer-bottom-inner{ flex-direction:column; text-align:center; }
}
