/* ============================================================
GLOBAL HEADER v4 — FIXED VERSION
============================================================ */

.header-standard {
    position: relative;
    z-index: 1000;
    background: linear-gradient(135deg, #0a3d62, #1e5799);
    color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Top-right controls */
.hs-topbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 8px 16px 0 16px;
    gap: 10px;
}

/* HERO BANNER WITH LIGHT BACKGROUND IMAGE */
.hs-hero-banner {
    background-image: url("hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px 16px 24px 16px;
}

.hs-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Force centre alignment */
.header-standard .hs-hero-text {
    text-align: center !important;
}

.hs-logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.hs-hero-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
}

/* Icons */
.hs-icon-btn,
.hs-hamburger {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 6px;
}

.hs-hamburger {
    font-size: 26px;
}
/* ============================================================
GLOBAL DARK MODE TEXT NORMALISATION — FIXES CV, PORTFOLIO,
INTERACTIVE CV, CERTIFICATIONS PAGES
============================================================ */



/* Global dark mode text normalisation */
body {
    color: var(--text-main) !important;
    background: var(--bg) !important;
}

/* Apply text colour ONLY to plain page content, NOT boxes/cards */
main *:not(.header-standard):not(header):not(footer):not(.hs-menu-panel)
    :not(.card):not(.box):not(.download-box):not(.timeline-box):not(.case-study):not(.profile-box) {
    color: var(--text-main) !important;
    background: transparent !important;
}

/* ============================================================
SEARCH BAR — SLIDE DOWN
============================================================ */

.hs-search-bar {
    display: none;
    background: rgba(0,0,0,0.75);
    padding: 10px 16px;
}

.hs-search-bar.open {
    display: block;
}

.hs-search-bar-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.hs-search-bar-inner input {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    border: none;
    font-size: 15px;
}

/* ============================================================
MEGA MENU — FIXED SCROLLING VERSION
============================================================ */

.hs-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
}

.hs-menu-overlay.open {
    display: block;
}

/* FIXED PANEL — SCROLLABLE */
.hs-menu-panel {
    position: fixed;
    top: 60px;
    right: 16px;
    left: 16px;
    max-height: 80vh;
    overflow-y: auto;
    background: #0a3d62;
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hs-menu-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.hs-menu-column {
    min-width: 140px;
    flex: 1;
}

/* Mobile-only items */
.hs-menu-mobile-only {
    display: none;
}

/* ============================================================
RESPONSIVE — iPHONE STACKED
============================================================ */

@media (max-width: 767px) {

    .hs-hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hs-logo {
        width: 60px;
        height: 60px;
    }

    .hs-hero-photo {
        width: 90px;
        height: 90px;
    }

    /* Hide header icons on mobile */
    .hs-search-icon,
    .hs-dark-icon {
        display: none;
    }

    .hs-menu-mobile-only {
        display: block;
        margin-top: 10px;
        border-top: 1px solid rgba(255,255,255,0.2);
        padding-top: 10px;
    }

    .hs-menu-panel {
        left: 10px;
        right: 10px;
    }

    .hs-menu-columns {
        flex-direction: column;
    }
}

/* ============================================================
FAQ FIXES
============================================================ */

.hero-section {
    margin-top: 0 !important;
}

.page-container {
    max-width: 900px;
    margin: 0 auto;
}
/* ============================================================
FIX PACK — HERO SIZE, MENU LINKS, DARK MODE, FAB, IPHONE SWIPE
============================================================ */

/* 1 — HERO BANNER HEIGHT (iPad too small) */
.hs-hero-banner {
    min-height: 260px;        /* matches screenshot scale */
    display: flex;
    align-items: center;
}

/* 2 — MENU LINK STYLING (blue underlined links issue) */
.hs-menu-column a,
.hs-menu-item {
    color: #fff !important;
    text-decoration: none !important;
    font-size: 14px;
}

.hs-menu-column a:hover,
.hs-menu-item:hover {
    text-decoration: underline !important;
}

/* 3 — DARK MODE FIX (body.dark was not styled) */
body.dark {
    background: #0b1220 !important;
    color: #e5e7eb !important;
}

body.dark .header-standard {
    background: linear-gradient(135deg, #000, #222) !important;
}

body.dark .hs-menu-panel {
    background: #000 !important;
}

/* 4 — FAB POSITION FIX (index page stuck bottom-left) */
.fab {
    position: fixed !important;
    right: 20px !important;
    bottom: 20px !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Booking FAB sits above */
.fab-booking {
    bottom: 80px !important;
}

/* 5 — IPHONE SWIPE-OFF-SCREEN FIX */
html, body {
    overflow-x: hidden !important;
}

/* Ensure menu never exceeds screen width */
.hs-menu-panel {
    max-width: calc(100% - 20px) !important;
}
/* ============================================================
FINAL FIXES — MENU LINK SCOPE + NORMAL LINK RESTORE
============================================================ */

/* 1 — Restrict menu link styling ONLY to the menu */
.hs-menu-panel .hs-menu-column a,
.hs-menu-panel .hs-menu-item {
    color: #fff !important;
    text-decoration: none !important;
    display: block !important;
    margin-bottom: 6px;
}

/* 2 — Restore normal link behaviour everywhere else */
main a,
.card a,
.page-container a {
    display: inline-block !important;
    margin-bottom: 8px;
    text-decoration: none;
    color: #0a66c2;
}

main a:hover,
.card a:hover,
.page-container a:hover {
    text-decoration: underline;
}
/* ============================================================
FINAL CONSOLIDATED FIX PACK
============================================================ */

/* 1 — HERO BANNER HEIGHT (iPad too small) */
.hs-hero-banner {
    min-height: 260px !important;
    display: flex !important;
    align-items: center !important;
}

/* 2 — MENU LINKS — restrict styling ONLY to menu */
.hs-menu-panel .hs-menu-column a,
.hs-menu-panel .hs-menu-item {
    color: #fff !important;
    text-decoration: none !important;
    display: block !important;
    margin-bottom: 6px !important;
    font-size: 14px !important;
}

/* 3 — RESTORE NORMAL LINK BEHAVIOUR OUTSIDE MENU */
main a,
.card a,
.page-container a {
    display: inline-block !important;
    margin-bottom: 8px !important;
    text-decoration: none;
    color: #0a66c2;
}

main a:hover,
.card a:hover,
.page-container a:hover {
    text-decoration: underline;
}

/* 4 — RESTORE ICON BUTTONS (search + dark mode) */
.hs-icon-btn,
.hs-dark-icon,
.hs-search-icon {
    font-size: 22px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 6px !important;
}

/* 5 — TILED MENU LAYOUT */
.hs-menu-columns {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 24px !important;
}
/* Move Legal column to bottom-right */
.hs-menu-column.legal-column {
    order: 999;
}
.hs-menu-column {
    order: 1;
}

.hs-menu-column.legal-column {
    order: 999;
}
.hs-menu-column {
    min-width: 150px !important;
}

/* 6 — UNIFY HEADER TEXT STYLE (FAQ style applied globally) */
.hs-hero-text h1 {
    font-size: 28px !important;
    font-weight: 700 !important;
}

.hs-hero-text p {
    font-size: 15px !important;
    font-weight: 400 !important;
}

/* 7 — RESTORE INDEX PAGE BUTTONS */
.brand-btn {
    background: #0a2540 !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
    border: 2px solid #0a2540 !important;
}

.brand-btn:hover {
    background: transparent !important;
    color: #0a66c2 !important;
    border-color: #0a66c2 !important;
}

/* 8 — FOOTER VISIBILITY FIX */
#footer {
    position: relative !important;
    z-index: 10 !important;
}

/* 9 — FIX FAQ FOOTER LOGO SIZE */
footer .footer-logo img {
    max-width: 90px !important;
    height: auto !important;
}
@media (min-width: 601px) and (max-width: 1024px) {

    footer.footer {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    /* About link under copyright */
    .footer-left {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    /* TRUE centring of the Legal column */
    .footer-column {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .footer-logo img {
        max-width: 90px;
    }
}
@media (max-width: 600px) {

    footer.footer {
        position: relative; /* allows absolute positioning inside */
        padding-top: 60px;  /* space so logo doesn’t overlap text */
    }

    /* Stack everything cleanly */
    .footer-left,
    .footer-column {
        width: 100%;
    }

    /* Logo positioned top-right */
    .footer-logo {
        position: absolute;
        top: 10px;
        right: 10px;
    }

    .footer-logo img {
        max-width: 55px; /* smaller so it feels intentional */
        height: auto;
    }
}

/* 10 — RESTORE LINKEDIN SVG ICON */
.card svg path {
    fill: #0A66C2 !important;
}

/* 11 — UNIFY FAB BUTTON STYLE (FAQ + INDEX) */
.fab,
#fab {
    position: fixed !important;
    right: 20px !important;
    bottom: 20px !important;
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: 26px !important;
    background: white !important;
    color: #0a2540 !important;
    border: 2px solid #0a2540 !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15) !important;
}

.fab-booking {
    bottom: 80px !important;
}

/* 12 — PREVENT IPHONE SIDE-SCROLL */
html, body {
    overflow-x: hidden !important;
}

/* Ensure menu never exceeds screen width */
.hs-menu-panel {
    max-width: calc(100% - 20px) !important;
}
/* ============================================================
FINAL PATCH — HEADER, MENU, FOOTER, FAB, ICONS
============================================================ */

/* 1 — Unify header + menu text across all pages */
.header-standard .hs-hero-text h1 {
    font-size: 28px !important;
    font-weight: 700 !important;
}

.header-standard .hs-hero-text p {
    font-size: 15px !important;
    font-weight: 400 !important;
}

.hs-menu-panel .hs-menu-column h4 {
    font-size: 16px !important;
    font-weight: 700 !important;
}

.hs-menu-panel .hs-menu-column a {
    font-size: 14px !important;
}

/* 2 — Clamp ALL footer logos site‑wide */
footer img {
    max-width: 90px !important;
    height: auto !important;
}

/* 3 — Restore footer background + layout + LinkedIn icon */
footer {
    background: #0a3d62 !important;
    color: white !important;
    padding: 30px 20px !important;
}

footer .footer-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
}

footer .footer-logo {
    margin-left: auto !important;
}

footer svg path {
    fill: #0A66C2 !important;
}
footer.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 30px;
    background: #111;
    color: white;
    flex-wrap: wrap;
    gap: 20px;
}

/* Left column */
.footer-left {
    flex: 1;
    min-width: 220px;
    font-size: 0.95rem;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

/* Legal column */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 160px;
}

.footer-column h4 {
    margin: 0 0 6px 0;
    font-size: 1rem;
    font-weight: 600;
}

.footer-column a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

/* Logo column */
.footer-logo img {
    max-width: 90px;
    height: auto;
    display: block;
}
footer.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px 30px;
    background: #111;
    color: white;
    gap: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 200px;
}

.footer-about {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.footer-column h4 {
    margin: 0 0 6px 0;
    font-size: 1rem;
    font-weight: 600;
}

.footer-logo img {
    max-width: 90px;
    height: auto;
}

/* Mobile fixes */
@media (max-width: 600px) {
    footer.footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo img {
        max-width: 70px;
        margin-top: 10px;
    }
}
@media (max-width: 600px) {
    footer.footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-column {
        text-align: left;
    }

    .footer-logo img {
        max-width: 70px;
        margin-top: 10px;
    }
}
@media (min-width: 601px) and (max-width: 1024px) {

    footer.footer {
        justify-content: space-between;
        align-items: flex-start;
    }

    /* About link sits directly under copyright */
    .footer-left {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    /* Centre the Legal column between left + right */
    .footer-column {
        text-align: center;
        margin: 0 auto;
    }

    .footer-logo img {
        max-width: 90px;
    }
}

/* 4 — Unify FAB across all pages */
.fab, #fab {
    position: fixed !important;
    right: 20px !important;
    bottom: 20px !important;
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: 26px !important;
    background: white !important;
    color: #0a2540 !important;
    border: 2px solid #0a2540 !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15) !important;
}
/* ============================================================
FINAL FIX PACK — HEADER, MENU, FOOTER, FAB, ICONS
============================================================ */

/* 1 — Unify header + menu text across all pages */
.header-standard .hs-hero-text h1 {
    font-size: 28px !important;
    font-weight: 700 !important;
}

.header-standard .hs-hero-text p {
    font-size: 15px !important;
    font-weight: 400 !important;
}

.hs-menu-panel .hs-menu-column h4 {
    font-size: 16px !important;
    font-weight: 700 !important;
}

.hs-menu-panel .hs-menu-column a {
    font-size: 14px !important;
}

/* 2 — Footer background + layout + logo size + LinkedIn icon */
footer {
    background: #0a3d62 !important;
    color: white !important;
    padding: 30px 20px !important;
}

footer .footer-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
}

footer .footer-logo {
    margin-left: auto !important;
}

footer img {
    max-width: 70px !important;
    height: auto !important;
}

footer svg path {
    fill: #0A66C2 !important;
}

/* 3 — Unify FAB across all pages */
.fab, #fab, .fab-booking, #bookingFab {
    display: flex !important;
    position: fixed !important;
    right: 20px !important;
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: 26px !important;
    background: white !important;
    color: #0a2540 !important;
    border: 2px solid #0a2540 !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15) !important;
}

.fab, #fab {
    bottom: 20px !important;
}

.fab-booking, #bookingFab {
    bottom: 80px !important;
}
/* ============================================================
FINAL AUTHORITATIVE FIX PACK — NOTHING CAN OVERRIDE THIS
============================================================ */

/* 1 — FORCE HEADER + MENU TEXT TO MATCH FAQ */
.header-standard .hs-hero-text h1 {
    font-size: 28px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.header-standard .hs-hero-text p {
    font-size: 15px !important;
    font-weight: 400 !important;
}

#hsMenuPanel .hs-menu-column h4 {
    font-size: 16px !important;
    font-weight: 700 !important;
}

#hsMenuPanel .hs-menu-column a {
    font-size: 14px !important;
    color: #fff !important;
    text-decoration: none !important;
    display: block !important;
    margin-bottom: 6px !important;
}

/* 2 — FORCE FOOTER BACKGROUND + LAYOUT ON ALL PAGES */
footer {
    background: #0a3d62 !important;
    color: white !important;
    padding: 30px 20px !important;
}

footer .footer-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
}

/* 3 — FORCE FOOTER LOGO SIZE (FAQ + INDEX) */
footer img,
footer .footer-logo img,
footer .footer-logo > img {
    max-width: 70px !important;
    height: auto !important;
}

/* 4 — FORCE FOOTER LOGO TO RIGHT SIDE */
footer .footer-logo {
    margin-left: auto !important;
    display: flex !important;
    justify-content: flex-end !important;
}

/* 5 — RESTORE LINKEDIN ICON ON INDEX */
footer svg path,
.card svg path {
    fill: #0A66C2 !important;
}

/* 6 — RESTORE FAB BUTTONS ON ALL PAGES */
.fab,
#fab,
.fab-booking,
#bookingFab {
    display: flex !important;
    position: fixed !important;
    right: 20px !important;
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: 26px !important;
    background: white !important;
    color: #0a2540 !important;
    border: 2px solid #0a2540 !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15) !important;
}

.fab,
#fab {
    bottom: 20px !important;
}

.fab-booking,
#bookingFab {
    bottom: 80px !important;
}

/* 7 — FORCE FAQ FOOTER TEXT LEFT-ALIGNED */
footer p,
footer div,
footer span {
    text-align: left !important;
}
.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hs-hero-banner {
    position: relative;
    overflow: hidden;
}

.hs-hero-inner {
    position: relative;
    z-index: 2;
}
/* --- Premium menu enhancements --- */

/* Top bar shadow */
.hs-topbar {
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* Profile photo glow */
.hs-hero-photo {
  transition: box-shadow .3s ease, transform .3s ease;
}
.hs-hero-photo:hover {
  box-shadow: 0 0 25px rgba(0,150,255,0.55);
  transform: scale(1.03);
}

/* Gradient overlay behind menu */
.hs-menu-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.35)
  );
}

/* Glassmorphism menu panel */
.hs-menu-panel {
  background: rgba(20,20,20,0.55);
  backdrop-filter: blur(12px);
  border-radius: 12px;
}

/* Column layout tweaks + dividers */
.hs-menu-columns {
  display: flex;
  gap: 40px;
}
.hs-menu-column {
  border-right: 1px solid rgba(255,255,255,0.1);
  padding-right: 25px;
}
.hs-menu-column:last-child {
  border-right: none;
}

/* Inline icons */
.hs-menu-column h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
}

/* Link hover underline */
.hs-menu-column a {
  position: relative;
  padding-bottom: 2px;
}
.hs-menu-column a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #4da3ff;
  transition: width .25s ease;
}
.hs-menu-column a:hover::after {
  width: 100%;
}

/* Active page highlight */
.hs-active-link {
  color: #4da3ff !important;
}
.hs-active-link::after {
  width: 100%;
}

/* Staggered fade-in */
.hs-menu-column {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s ease, transform .4s ease;
}
.hs-menu-overlay.open .hs-menu-column {
  opacity: 1;
  transform: translateY(0);
}
.hs-menu-column:nth-child(1) { transition-delay: .05s; }
.hs-menu-column:nth-child(2) { transition-delay: .10s; }
.hs-menu-column:nth-child(3) { transition-delay: .15s; }
.hs-menu-column:nth-child(4) { transition-delay: .20s; }
.hs-menu-column:nth-child(5) { transition-delay: .25s; }
.hs-menu-column:nth-child(6) { transition-delay: .30s; }
.hs-menu-column:nth-child(7) { transition-delay: .35s; }
/* Ensure hero banner acts as positioning context */
.hs-hero-banner {
  position: relative;
}

/* Top bar overlay fix */
.hs-topbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: flex-end;
  padding: 10px 20px;
  background: transparent !important;
  z-index: 10;
}

/* Icon buttons */
.hs-icon-btn,
.hs-hamburger {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  margin-left: 12px;
  transition: opacity 0.3s ease;
}

.hs-icon-btn:hover,
.hs-hamburger:hover {
  opacity: 0.7;
}
/* Ensure columns flow left → right but allow reordering */
.hs-menu-columns {
    display: flex;
    flex-wrap: wrap;
}

/* Legal column should be second-to-last */
.legal-column {
    order: 998;
}

/* Recently Viewed should be last (to the right of Legal) */
.recently-viewed-column {
    order: 999;
}

/* Mobile: natural stacking */
@media (max-width: 900px) {
    .legal-column,
    .recently-viewed-column {
        order: initial;
    }
}
.footer {
    background: #0d0d0d;
    color: #ffffff;
    padding: 24px 0 72px; /* slightly tighter */
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.95rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

/* Left: logo + copy inline */
.footer-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo img {
    width: 150px;
    height: auto;
}

/* Right: links */
.footer-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-right a {
    color: #7ac0f9;
    text-decoration: none;
    font-weight: 500;
}

.footer-right a:hover {
    color: #a8d8ff;
}

/* Optional: tone down copy colour slightly */
.footer-copy {
    color: rgba(255,255,255,0.8);
}

/* Mobile: keep logo-left / links-right, but allow wrap */
@media (max-width: 768px) {
    .footer-inner {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .footer-left {
        justify-content: center;
    }

    .footer-right {
        justify-content: center;
        flex-wrap: wrap;
    }
}
/* FORCE override old footer styles */
footer.footer {
    background: #0d0d0d !important;
    color: #ffffff !important;
    padding: 24px 0 72px !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    font-size: 0.95rem !important;
}

/* Layout wrapper */
footer.footer .footer-inner {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 24px !important;
    flex-wrap: nowrap !important; /* stops stacking */
}

/* Left side */
footer.footer .footer-left {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    flex-direction: row !important;
}

/* Logo */
footer.footer .footer-logo img {
    width: 150px !important;
    height: auto !important;
}

/* Right side links */
footer.footer .footer-right {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
    flex-direction: row !important;
}

footer.footer .footer-right a {
    color: #7ac0f9 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
}

footer.footer .footer-right a:hover {
    color: #a8d8ff !important;
}

/* Copy text */
footer.footer .footer-copy {
    color: rgba(255,255,255,0.8) !important;
}

/* Mobile */
@media (max-width: 768px) {
    footer.footer .footer-inner {
        flex-wrap: wrap !important;
        justify-content: center !important;
        text-align: center !important;
    }

    footer.footer .footer-left,
    footer.footer .footer-right {
        justify-content: center !important;
    }
}
.footer {
    background: #0d0d0d;
    color: #ffffff;
    padding: 24px 0 72px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo img {
    width: 150px;
    height: auto;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-right a {
    color: #7ac0f9;
    text-decoration: none;
    font-weight: 500;
}

.footer-right a:hover {
    color: #a8d8ff;
}

.footer-copy {
    color: rgba(255,255,255,0.8);
}

/* Mobile */
@media (max-width: 768px) {
    .footer-inner {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        justify-content: center;
    }
}
