/* ── page-level styles ── */

/* navbar */
/* ═══════════════════════════════════════════════
     RESET & DESIGN TOKENS
  ═══════════════════════════════════════════════ */
  *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

  :root {
    --navy:         #0b1e3d;
    --navy-mid:     #122447;
    --blue:         #1560e8;
    --blue-mid:     #1250c8;
    --blue-light:   #ddeaff;
    --blue-xlight:  #f0f5ff;
    --gold:         #e8a020;
    --text:         #111827;
    --text-soft:    #4b5563;
    --text-muted:   #9ca3af;
    --surface:      #ffffff;
    --surface-2:    #f7f9fc;
    --border:       #e5e9f0;
    --border-soft:  #f0f3f8;

    --r-xs: 4px;  --r-sm: 8px;
    --r-md: 12px; --r-lg: 18px; --r-xl: 24px;

    --sh-xs: 0 1px 3px rgba(0,0,0,.06);
    --sh-sm: 0 2px 8px rgba(0,0,0,.08);
    --sh-md: 0 6px 20px rgba(0,0,0,.10);
    --sh-lg: 0 16px 48px rgba(0,0,0,.14);
    --sh-blue: 0 8px 24px rgba(21,96,232,.25);

    --ease: cubic-bezier(.4,0,.2,1);
    --t: .22s;
  }

  html { scroll-behavior:smooth; }

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--surface-2);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }

  @media (min-width:992px) { body { padding-top:112px; } }
  @media (max-width:991px) { body { padding-top:68px;  } }

  /* ═══════════════════════════════════════════════
     SVG ICON SYSTEM — inline sprite
  ═══════════════════════════════════════════════ */
  .ico {
    display:inline-block; width:1em; height:1em;
    vertical-align:middle; fill:currentColor;
    flex-shrink:0; line-height:1;
  }

  /* ═══════════════════════════════════════════════
     LAYOUT HELPERS
  ═══════════════════════════════════════════════ */
  .wrap  { max-width:1360px; margin:0 auto; padding:0 28px; }
  .wrapN { max-width:1480px; margin:0 auto; padding:0 28px; }
  .flex  { display:flex; align-items:center; }
  .between { justify-content:space-between; }

  /* ═══════════════════════════════════════════════
     HEADER SHELL
  ═══════════════════════════════════════════════ */
  .site-header {
    position:fixed; inset:0 0 auto;
    z-index:9000; background:var(--surface);
    transition: box-shadow var(--t) var(--ease),
                transform var(--t) var(--ease);
  }
  .site-header.scrolled { box-shadow: var(--sh-md); }
  @media (min-width:992px) {
    .site-header.hide { transform:translateY(-44px); }
  }

  /* ═══════════════════════════════════════════════
     TOP BAR
  ═══════════════════════════════════════════════ */
  .top-bar {
    height:44px;
    background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 100%);
    display:flex; align-items:center;
    border-bottom:1px solid rgba(255,255,255,.06);
  }
  @media (max-width:991px) { .top-bar { display:none; } }

  .top-bar-inner { display:flex; align-items:center; justify-content:space-between; width:100%; }

  .tb-group { display:flex; align-items:center; }

  .tb-link {
    display:inline-flex; align-items:center; gap:5px;
    color:rgba(255,255,255,.7); text-decoration:none;
    font-size:.72rem; font-weight:500; letter-spacing:.01em;
    padding:0 12px; height:44px;
    transition:background var(--t), color var(--t);
    white-space:nowrap;
  }
  .tb-link:hover { background:rgba(255,255,255,.08); color:#fff; }
  .tb-link .ico { font-size:.85em; opacity:.8; }

  .tb-sep { width:1px; height:18px; background:rgba(255,255,255,.15); }

  /* Admin pill */
  .tb-admin {
    display:inline-flex; align-items:center; gap:6px;
    background:rgba(232,160,32,.15); border:1px solid rgba(232,160,32,.35);
    color:var(--gold) !important; border-radius:20px;
    padding:5px 14px !important; height:auto !important; margin:0 6px;
    font-weight:600 !important; font-size:.73rem !important;
    letter-spacing:.02em;
    transition:background var(--t), border-color var(--t) !important;
  }
  .tb-admin:hover { background:rgba(232,160,32,.25) !important; border-color:var(--gold) !important; }

  /* Social icons strip */
  .tb-socials { display:flex; align-items:center; }
  .tb-soc {
    display:inline-flex; align-items:center; justify-content:center;
    width:30px; height:44px; color:rgba(255,255,255,.55);
    text-decoration:none; font-size:.88rem;
    transition:background var(--t), color var(--t);
  }
  .tb-soc:hover { background:rgba(255,255,255,.1); color:#fff; }

  /* Apply CTA pill */
  .tb-apply {
    display:inline-flex; align-items:center; gap:6px;
    background:var(--blue); color:#fff !important;
    border-radius:20px; padding:6px 18px !important;
    height:auto !important; margin-left:10px;
    font-weight:700 !important; font-size:.74rem !important;
    letter-spacing:.03em; text-transform:uppercase;
    transition:background var(--t), transform var(--t), box-shadow var(--t) !important;
    box-shadow:0 2px 8px rgba(21,96,232,.35);
  }
  .tb-apply:hover { background:var(--blue-mid) !important; transform:translateY(-1px) !important; box-shadow:var(--sh-blue) !important; }

  /* ═══════════════════════════════════════════════
     MAIN NAVBAR
  ═══════════════════════════════════════════════ */
  .navbar {
    height:68px; display:flex; align-items:center;
    border-bottom:1px solid var(--border-soft);
  }
  .nav-inner { display:flex; align-items:center; justify-content:space-between; width:100%; }

  /* Brand */
  .brand { display:flex; align-items:center; gap:16px; }

  .brand-logo {
    display:flex; align-items:center; gap:10px;
    text-decoration:none; transition:opacity var(--t);
  }
  .brand-logo:hover { opacity:.85; }
  .brand-logo img {
    height:44px; width:44px; border-radius:var(--r-sm);
    object-fit:cover; flex-shrink:0;
  }
  .brand-text { line-height:1.2; }
  .brand-name {
    font-family:'Playfair Display', serif;
    font-size:1.15rem; font-weight:700;
    color:var(--navy); letter-spacing:-.01em;
  }
  .brand-sub {
    display:block; font-size:.6rem; font-weight:600;
    text-transform:uppercase; letter-spacing:.1em;
    color:var(--text-muted); margin-top:1px;
  }

  .brand-sep { width:1px; height:36px; background:var(--border); }

  .affil {
    display:flex; align-items:center; gap:8px;
    text-decoration:none; opacity:.6;
    transition:opacity var(--t);
  }
  .affil:hover { opacity:1; }
  .affil img { height:32px; border-radius:4px; }
  .affil-lbl {
    font-size:.58rem; font-weight:600;
    text-transform:uppercase; letter-spacing:.08em;
    color:var(--text-muted); line-height:1.3;
  }

  /* ─── Desktop nav menu ─── */
  .nav-list {
    display:flex; list-style:none;
    align-items:center; gap:1px; margin:0;
  }

  .nav-link {
    display:inline-flex; align-items:center; gap:6px;
    padding:7px 12px; font-size:.83rem; font-weight:500;
    color:var(--text); text-decoration:none;
    border-radius:var(--r-sm); white-space:nowrap;
    transition:background var(--t), color var(--t);
    cursor:pointer; position:relative;
  }
  .nav-link .ico { font-size:.9em; color:var(--text-muted); transition:color var(--t); }
  .nav-link:hover,
  .nav-link.is-active { background:var(--blue-xlight); color:var(--blue); }
  .nav-link:hover .ico,
  .nav-link.is-active .ico { color:var(--blue); }

  /* caret */
  .nav-link.has-drop .caret {
    display:inline-block; width:10px; height:10px;
    margin-left:1px; color:var(--text-muted);
    transition:transform var(--t), color var(--t);
    flex-shrink:0;
  }
  .drop-wrap:hover .nav-link .caret { transform:rotate(180deg); color:var(--blue); }

  /* ─── Dropdown ─── */
  .drop-wrap { position:relative; }

  .dropdown {
    position:absolute; top:calc(100% + 10px); left:0;
    background:var(--surface); border:1px solid var(--border);
    border-radius:var(--r-lg); box-shadow:var(--sh-lg);
    min-width:240px; list-style:none;
    padding:8px; z-index:200;
    opacity:0; visibility:hidden; pointer-events:none;
    transform:translateY(-8px) scale(.98);
    transform-origin:top left;
    transition:opacity var(--t) var(--ease),
               transform var(--t) var(--ease),
               visibility var(--t);
  }
  /* tiny arrow */
  .dropdown::before {
    content:''; position:absolute; top:-6px; left:20px;
    width:10px; height:10px;
    background:var(--surface); border:1px solid var(--border);
    transform:rotate(45deg);
    clip-path:polygon(0 0,100% 0,0 100%);
  }
  .drop-wrap:hover .dropdown,
  .drop-wrap:focus-within .dropdown {
    opacity:1; visibility:visible; pointer-events:auto;
    transform:translateY(0) scale(1);
  }

  .dropdown li a {
    display:flex; align-items:center; gap:10px;
    padding:8px 10px; border-radius:var(--r-sm);
    font-size:.83rem; font-weight:500;
    color:var(--text); text-decoration:none;
    transition:background var(--t), color var(--t), transform var(--t);
  }
  .dropdown li a .ico {
    font-size:.95em; color:var(--blue); opacity:.7;
    flex-shrink:0; transition:opacity var(--t);
  }
  .dropdown li a:hover { background:var(--blue-xlight); color:var(--blue); transform:translateX(3px); }
  .dropdown li a:hover .ico { opacity:1; }

  /* divider in dropdown */
  .drop-divider { height:1px; background:var(--border-soft); margin:4px 0; }

  /* ─── Hamburger ─── */
  .hamburger {
    display:none; flex-direction:column;
    justify-content:center; gap:5px;
    background:none; border:1.5px solid var(--border);
    border-radius:var(--r-sm); padding:9px 10px;
    cursor:pointer; width:44px; height:44px;
  }
  .hamburger span {
    display:block; height:2px; width:100%;
    background:var(--text); border-radius:2px;
    transition:transform var(--t), opacity var(--t), width var(--t);
  }
  .hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity:0; width:0; }
  .hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
  @media (max-width:991px) { .hamburger { display:flex; } }

  /* ═══════════════════════════════════════════════
     MOBILE DRAWER
  ═══════════════════════════════════════════════ */
  @media (max-width:991px) {
    .nav-list {
      position:fixed; inset:0 0 0 auto;
      width:min(360px,92vw); height:100dvh;
      background:var(--surface);
      flex-direction:column; align-items:stretch;
      gap:0; overflow-y:auto; overflow-x:hidden;
      transform:translateX(100%);
      transition:transform .3s var(--ease);
      box-shadow:none; z-index:8999;
      padding-bottom:2rem;
    }
    .nav-list.open {
      transform:translateX(0);
      box-shadow:var(--sh-lg);
    }

    /* Drawer top banner */
    .drawer-top {
      background:linear-gradient(135deg, var(--navy), var(--navy-mid));
      padding:20px 20px 16px;
      flex-shrink:0;
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .drawer-brand {
      display:flex; align-items:center; gap:10px; text-decoration:none;
    }
    .drawer-brand img { height:38px; border-radius:6px; }
    .drawer-brand-name { font-family:'Playfair Display',serif; font-size:1rem; color:#fff; }
    .drawer-brand-sub { font-size:.6rem; color:rgba(255,255,255,.5); letter-spacing:.06em; text-transform:uppercase; }

    .drawer-cta-row { display:flex; gap:8px; }
    .d-admin-btn, .d-login-btn {
      flex:1; display:flex; align-items:center; justify-content:center;
      gap:7px; padding:9px 12px; border-radius:50px;
      font-size:.8rem; font-weight:600; text-decoration:none;
    }
    .d-admin-btn { background:var(--gold); color:var(--navy); }
    .d-login-btn { background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.2); color:#fff; }
    .d-login-btn:hover { background:rgba(255,255,255,.2); }

    .drawer-socials { display:flex; gap:6px; flex-wrap:wrap; }
    .drawer-soc {
      width:32px; height:32px; border-radius:8px;
      background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.15);
      display:inline-flex; align-items:center; justify-content:center;
      color:rgba(255,255,255,.65); text-decoration:none;
      transition:background var(--t), color var(--t);
    }
    .drawer-soc:hover { background:var(--blue); color:#fff; border-color:var(--blue); }

    /* Quick access grid */
    .drawer-quick { padding:14px 16px; background:var(--surface-2); border-bottom:1px solid var(--border); }
    .quick-label { font-size:.65rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--text-muted); margin-bottom:10px; }
    .quick-grid { display:grid; grid-template-columns:1fr 1fr; gap:7px; }
    .quick-link {
      display:flex; align-items:center; gap:7px; padding:9px 11px;
      background:var(--surface); border:1px solid var(--border);
      border-radius:var(--r-sm); font-size:.79rem; font-weight:500;
      color:var(--text); text-decoration:none;
      transition:background var(--t), border-color var(--t), color var(--t);
    }
    .quick-link .ico { color:var(--blue); font-size:.88em; }
    .quick-link:hover { background:var(--blue-xlight); border-color:var(--blue); color:var(--blue); }

    /* Nav items */
    .nav-item { border-bottom:1px solid var(--border-soft); }
    .nav-item:last-child { border-bottom:none; }

    .nav-link {
      padding:13px 20px; border-radius:0;
      font-size:.88rem; width:100%; justify-content:space-between;
    }
    .nav-link .caret { margin-left:auto; }
    .nav-link.drop-open .caret { transform:rotate(180deg); color:var(--blue); }

    /* Mobile accordion */
    .dropdown {
      position:static; opacity:1; visibility:visible;
      pointer-events:auto; transform:none;
      box-shadow:none; border:none; border-radius:0;
      background:var(--blue-xlight);
      padding:0; max-height:0; overflow:hidden;
      transition:max-height .3s var(--ease);
    }
    .dropdown::before { display:none; }
    .dropdown.open { max-height:700px; padding:6px 0 6px 0; }
    .dropdown li a {
      border-radius:0; padding:9px 20px 9px 36px;
      font-size:.83rem; border-bottom:1px solid rgba(21,96,232,.06);
    }
    .dropdown li a:hover { transform:none; padding-left:42px; }

    /* Mobile Apply btn */
    .m-apply-wrap { padding:16px 20px 8px; }
    .m-apply-btn {
      display:flex; align-items:center; justify-content:center;
      gap:8px; width:100%; padding:14px;
      background:var(--blue); color:#fff; border-radius:50px;
      font-weight:700; font-size:.9rem; text-decoration:none;
      box-shadow:var(--sh-blue);
      transition:background var(--t), transform var(--t);
    }
    .m-apply-btn:hover { background:var(--blue-mid); transform:translateY(-1px); }
  }

  /* Backdrop */
  .backdrop {
    display:none; position:fixed; inset:0;
    background:rgba(11,30,61,.55); backdrop-filter:blur(4px);
    z-index:8998; opacity:0; transition:opacity .3s;
  }
  .backdrop.show { display:block; opacity:1; }

  /* ═══════════════════════════════════════════════
     DEMO HERO (between nav and footer demo)
  ═══════════════════════════════════════════════ */
  .hero {
    background:linear-gradient(135deg, var(--navy) 0%, #1a3a6e 60%, #1560e8 100%);
    color:#fff; padding:6rem 0 5rem;
    position:relative; overflow:hidden;
  }
  .hero::after {
    content:''; position:absolute; inset:0;
    background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events:none;
  }
  .hero-inner { position:relative; z-index:1; text-align:center; }
  .hero h1 {
    font-family:'Playfair Display',serif;
    font-size:clamp(2rem,5vw,3.2rem);
    font-weight:700; margin-bottom:.75rem;
    letter-spacing:-.02em;
  }
  .hero p { font-size:1.1rem; opacity:.8; max-width:600px; margin:0 auto 2rem; }
  .hero-badge {
    display:inline-flex; align-items:center; gap:8px;
    background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2);
    border-radius:20px; padding:6px 16px;
    font-size:.82rem; font-weight:500; color:rgba(255,255,255,.85);
  }
  .hero-badge .ico { color:var(--gold); }

  /* ═══════════════════════════════════════════════
     FOOTER
  ═══════════════════════════════════════════════ */
  footer {
    background:#08131f;
    color:rgba(255,255,255,.7);
    padding-top:64px;
    border-top:3px solid var(--blue);
  }

  .footer-grid {
    display:grid;
    grid-template-columns:1.8fr 1.6fr 1fr 1fr 1fr;
    gap:48px 36px;
    padding-bottom:48px;
    border-bottom:1px solid rgba(255,255,255,.07);
  }
  @media (max-width:1100px) { .footer-grid { grid-template-columns:1fr 1fr 1fr; } }
  @media (max-width:680px)  { .footer-grid { grid-template-columns:1fr 1fr; } }
  @media (max-width:460px)  { .footer-grid { grid-template-columns:1fr; } }

  /* Brand col */
  .f-logo { display:flex; align-items:center; gap:10px; margin-bottom:16px; }
  .f-logo img { height:44px; border-radius:8px; }
  .f-logo-name { font-family:'Playfair Display',serif; font-size:1.05rem; color:#fff; }
  .f-logo-sub { font-size:.6rem; text-transform:uppercase; letter-spacing:.08em; color:rgba(255,255,255,.4); }
  .f-about { font-size:.84rem; line-height:1.8; color:rgba(255,255,255,.5); margin-bottom:20px; }

  /* Section heading */
  footer h4 {
    font-size:.7rem; font-weight:700;
    text-transform:uppercase; letter-spacing:.12em;
    color:rgba(255,255,255,.35);
    margin-bottom:16px; padding-bottom:10px;
    border-bottom:1px solid rgba(255,255,255,.07);
  }

  /* Contact items */
  .f-contact { list-style:none; padding:0; }
  .f-ci {
    display:flex; gap:12px; margin-bottom:14px;
    align-items:flex-start;
  }
  .f-ci-icon {
    width:30px; height:30px; border-radius:var(--r-sm);
    background:rgba(21,96,232,.15); border:1px solid rgba(21,96,232,.2);
    display:inline-flex; align-items:center; justify-content:center;
    flex-shrink:0; margin-top:1px;
  }
  .f-ci-icon .ico { font-size:.85rem; color:#6da6ff; }
  .f-ci-body { font-size:.83rem; line-height:1.6; }
  .f-ci-label { display:block; font-size:.68rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:rgba(255,255,255,.3); margin-bottom:1px; }
  .f-ci-body a { color:rgba(255,255,255,.65); text-decoration:none; transition:color var(--t); }
  .f-ci-body a:hover { color:#fff; }

  /* Hours badge */
  .hours-badge {
    display:inline-flex; align-items:center; gap:7px;
    background:rgba(21,96,232,.12); border:1px solid rgba(21,96,232,.25);
    border-radius:20px; padding:5px 14px;
    font-size:.75rem; font-weight:600; color:#7ab4ff;
    margin-bottom:18px;
  }

  /* Map */
  .f-map { border-radius:var(--r-md); overflow:hidden; border:1px solid rgba(255,255,255,.08); }
  .f-map iframe { display:block; }

  /* Footer links */
  .f-links { list-style:none; padding:0; }
  .f-links li { margin-bottom:9px; }
  .f-links a {
    display:inline-flex; align-items:center; gap:8px;
    font-size:.83rem; font-weight:400;
    color:rgba(255,255,255,.55); text-decoration:none;
    transition:color var(--t), transform var(--t);
  }
  .f-links a .ico { font-size:.8em; color:rgba(255,255,255,.2); transition:color var(--t); flex-shrink:0; }
  .f-links a:hover { color:#fff; transform:translateX(3px); }
  .f-links a:hover .ico { color:var(--blue); }

  /* Footer socials */
  .f-socials { display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
  .f-soc {
    width:36px; height:36px; border-radius:var(--r-sm);
    background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1);
    display:inline-flex; align-items:center; justify-content:center;
    color:rgba(255,255,255,.5); text-decoration:none;
    transition:background var(--t), color var(--t), border-color var(--t), transform var(--t);
  }
  .f-soc:hover { background:var(--blue); border-color:var(--blue); color:#fff; transform:translateY(-3px); }

  /* Footer bottom */
  .footer-bottom {
    padding:20px 0;
    display:flex; align-items:center;
    justify-content:space-between; flex-wrap:wrap; gap:10px;
  }
  .footer-bottom p { font-size:.78rem; color:rgba(255,255,255,.3); }
  .footer-bottom strong { color:rgba(255,255,255,.5); font-weight:600; }

  /* ═══════════════════════════════════════════════
     BACK TO TOP
  ═══════════════════════════════════════════════ */
  #btt {
    position:fixed; bottom:28px; right:28px;
    width:46px; height:46px; border-radius:50%;
    background:var(--blue); color:#fff; border:none;
    cursor:pointer; z-index:8990;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 4px 16px rgba(21,96,232,.45);
    opacity:0; visibility:hidden;
    transform:translateY(10px);
    transition:opacity var(--t), visibility var(--t),
               transform var(--t), background var(--t);
  }
  #btt.show { opacity:1; visibility:visible; transform:translateY(0); }
  #btt:hover { background:var(--navy); }
  #btt .ico { font-size:1.1rem; }

/* tpl-25 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f8f9fa;
}
:root {
    --navy:         #0b1e3d;
    --navy-mid:     #122447;
    --blue:         #1560e8;
    --blue-mid:     #1250c8;
    --blue-light:   #ddeaff;
    --blue-xlight:  #f0f5ff;
    --gold:         #e8a020;
    --text:         #111827;
    --text-soft:    #4b5563;
    --text-muted:   #9ca3af;
    --surface:      #ffffff;
    --surface-2:    #f7f9fc;
    --border:       #e5e9f0;
    --border-soft:  #f0f3f8;

    --r-xs: 4px;  --r-sm: 8px;
    --r-md: 12px; --r-lg: 18px; --r-xl: 24px;

    --sh-xs: 0 1px 3px rgba(0,0,0,.06);
    --sh-sm: 0 2px 8px rgba(0,0,0,.08);
    --sh-md: 0 6px 20px rgba(0,0,0,.10);
    --sh-lg: 0 16px 48px rgba(0,0,0,.14);
    --sh-blue: 0 8px 24px rgba(21,96,232,.25);

    --ease: cubic-bezier(.4,0,.2,1);
    --t: .22s;
  }

    /* Dark mode styles */
    [data-bs-theme="dark"] {
      --bg-color: var(--bg-dark);
      --text-color: var(--text-dark);
      --navbar-bg: #343a40;
      --topbar-bg: #2c3034;
    }

    [data-bs-theme="light"] {
      --bg-color: var(--bg-light);
      --text-color: var(--text-primary);
      --navbar-bg: #ffffff;
      --topbar-bg: #f8f9fa;
    }

    body {
      background-color: var(--bg-color);
      color: var(--text-color);
      transition: background-color 0.3s, color 0.3s;
      font-family: var(--font-family);
      padding-top: 135px; /* Account for fixed header */
    }

    @media (max-width: 991.98px) {
      body {
        padding-top: 76px; /* Adjust for navbar only on mobile */
      }
    }

    /* Apply primary theme color */
    .btn-primary, .social-btn, .back-to-top {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
    }
    
    .btn-primary:hover, .social-btn:hover {
      background-color: var(--primary-dark);
      border-color: var(--primary-dark);
    }
    
    .btn-outline-primary {
      color: var(--primary-color);
      border-color: var(--primary-color);
    }
    
    .btn-outline-primary:hover {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
    }
    
    .text-primary {
      color: var(--primary-color) !important;
    }
    
    .section-title {
      color: var(--primary-color);
      position: relative;
      padding-bottom: 15px;
    }
    
    .section-title:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 3px;
      background-color: var(--primary-color);
    }
    
    .section-title.text-center:after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    
    /* Contact Information Section */
    .contact-info-card {
      text-align: center;
      padding: 2rem 1.5rem;
      border: none;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(13, 110, 253, 0.1);
      transition: transform 0.3s ease;
      border-top: 4px solid var(--primary-color);
    }
    
    .contact-info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(13, 110, 253, 0.15);
    }
    
    .contact-icon {
      font-size: 2.5rem;
      color: var(--primary-color);
      margin-bottom: 1rem;
    }
    
    @media (max-width: 576px) {
      .contact-info-card {
        padding: 1.5rem 1rem;
      }
    }
    
    /* Social Media Section */
    .social-media-section {
      background: linear-gradient(135deg, var(--primary-color) 0%, #0d6efd 100%);
      padding: 80px 0;
      color: white;
    }

    .social-media-card {
      background: white;
      border-radius: 10px;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
      border: 1px solid var(--border-color);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .social-media-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .social-media-card h4 {
      color: var(--dark-color);
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .social-media-card p {
      color: #6c757d;
      margin-bottom: 1.5rem;
      flex-grow: 1;
    }

    .social-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .facebook-card .social-icon { color: #3b5998; }
    .twitter-card .social-icon { color: #1da1f2; }
    .linkedin-card .social-icon { color: #0077b5; }
    .youtube-card .social-icon { color: #ff0000; }
    .instagram-card .social-icon { color: #e4405f; }
    .whatsapp-card .social-icon { color: #25d366; }

    .social-btn {
      display: inline-block;
      padding: 0.5rem 1.5rem;
      background-color: var(--primary-color);
      color: white;
      border-radius: 30px;
      text-decoration: none;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-weight: 500;
    }

    .social-btn:hover {
      background-color: #0d2b5e;
      color: white;
      transform: translateY(-2px);
      text-decoration: none;
    }
    
    @media (max-width: 768px) {
      .social-media-card {
        margin-bottom: 1.5rem;
      }
      
      .social-media-section {
        padding: 2.5rem 0;
      }
      
      .social-icon {
        font-size: 2rem;
      }
    }
    
    /* Location Section */
    .travel-direction {
      margin-bottom: 1.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid #e9ecef;
    }
    
    .travel-direction:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }
    
    .travel-direction h5 {
      display: flex;
      align-items: center;
      margin-bottom: 0.5rem;
      color: var(--primary-color);
    }
    
    .map-container {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(13, 110, 253, 0.1);
      height: 100%;
      border: 1px solid rgba(13, 110, 253, 0.1);
    }
    
    .map-container iframe {
      display: block;
      width: 100%;
      height: 450px;
    }
    
    @media (max-width: 768px) {
      .map-container {
        margin-bottom: 2rem;
        height: 300px;
      }
      
      .travel-direction {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
      }
    }
    
    /* Contact Form */
    .contact-form {
      border: none;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(13, 110, 253, 0.1);
      border-top: 4px solid var(--primary-color);
    }
    
    .form-control:focus, .form-select:focus {
      border-color: var(--primary-color);
      box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }
    
    /* Header Styles */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1050;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      will-change: transform;
    }

    /* When scrolled, slide header up 45px so navbar sticks to screen top - DESKTOP ONLY */
    @media (min-width: 992px) {
      .site-header.header-scrolled {
        transform: translateY(-45px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
      }
    }

    /* MOBILE: Completely disable header scroll behavior and transitions */
    @media (max-width: 991.98px) {
      .site-header {
        transition: none !important;
        transform: none !important;
      }
      
      .site-header.header-scrolled {
        transform: none !important;
        box-shadow: 0 2px 4px rgba(0,0,0,.1) !important;
      }
    }

    /* Top Bar Styles */
    .top-bar {
      background-color: var(--topbar-bg);
      border-bottom: 1px solid #dee2e6;
      font-size: 0.8rem;
      position: relative;
      z-index: 1030;
      padding: 0.5rem 0;
    }

    [data-bs-theme="dark"] .top-bar {
      border-bottom-color: #495057;
    }

    .top-bar a {
      color: var(--text-color) !important;
      text-decoration: none;
      transition: color 0.2s, transform 0.2s;
      white-space: nowrap;
    }

    .top-bar a:hover {
      color: var(--primary-color) !important;
      transform: translateY(-1px);
    }

    .social-icons a {
      font-size: 1rem;
    }

    /* Navbar Styles */
    .navbar {
      background-color: var(--navbar-bg);
      box-shadow: 0 2px 4px rgba(0,0,0,.1);
      transition: background-color 0.3s;
      position: relative;
      width: 100%;
      z-index: 1020;
      height: 70px;
    }

    .navbar-brand img {
      max-height: 50px;
      width: auto;
    }

    .brand-text {
      font-size: 0.6rem;
      margin-bottom: 0;
      font-weight: 600;
      line-height: 1;
    }

    .nav-link {
      color: var(--text-color) !important;
      font-weight: 500;
      position: relative;
      padding: 0.5rem 0.75rem !important;
      transition: color 0.2s, transform 0.2s;
      white-space: nowrap;
      font-size: 0.95rem;
    }

    @media screen and (max-width: 1230.98px) {
      .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.5rem !important;
      }
    }

    .nav-link:hover, .nav-link.active {
      color: var(--primary-color) !important;
      transform: translateY(-1px);
    }

    /* Active link indicator */
    .nav-link.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0.75rem;
      right: 0.75rem;
      height: 2px;
      background-color: var(--primary-color);
      border-radius: 2px;
    }

    /* Dropdown styles */
    .dropdown-menu {
      border: none;
      box-shadow: 0 4px 6px rgba(0,0,0,.1);
    }

    .dropdown-item {
      padding: 0.5rem 1rem;
      transition: background-color 0.2s, transform 0.2s;
    }

    .dropdown-item:hover {
      background-color: rgba(13, 110, 253, 0.1);
      transform: translateX(5px);
    }

    /* Mobile menu toggler animation */
    .navbar-toggler {
      border: none;
      padding: 0.25rem;
      width: 30px;
      height: 30px;
      position: relative;
    }

    .navbar-toggler span {
      display: block;
      height: 2px;
      width: 100%;
      background-color: var(--text-color);
      margin: 5px 0;
      transition: all 0.3s;
      transform-origin: center;
    }

    .navbar-toggler[aria-expanded="true"] span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    .navbar-toggler[aria-expanded="true"] span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Desktop Hover Behavior */
    @media (min-width: 992px) {
      .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }
      
      .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
      }
    }

    /* Mobile Styles */
    @media (max-width: 991.98px) {
      .top-bar {
        display: none !important; /* Hide top bar on mobile */
      }
      
      .navbar-collapse {
        position: fixed;
        top: var(--header-height, 60px);
        right: -100%;
        bottom: 0;
        height: calc(100vh - var(--header-height, 80px));
        width: 280px;
        max-width: 90%;
        padding: 1rem;
        background-color: var(--navbar-bg);
        box-shadow: -5px 0 15px rgba(0,0,0,.12);
        transition: right 0.28s ease;
        z-index: 1065; /* above content */
        overflow-y: auto; /* only menu scrolls */
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
      }
      
      .navbar-collapse.show {
        right: 0;
      }
      
      /* Prevent body/page scrolling when mobile menu open */
      .no-scroll,
      html.no-scroll {
        overflow: hidden;
        height: 100%;
        touch-action: none;
      }
      
      /* Backdrop for mobile menu */
      .navbar-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0,0,0,0.45);
        z-index: 1060; /* below menu but above page content */
        display: none;
      }
      .navbar-backdrop.show {
        display: block;
      }
      
      /* ensure links inside menu close it when tapped */
      .navbar-collapse .nav-link,
      .navbar-collapse .dropdown-item {
        -webkit-tap-highlight-color: transparent;
      }
      
      .navbar-nav {
        margin-top: 1rem;
        text-align: left;
        width: 100%;
      }
      
      .nav-item {
        width: 100%;
        text-align: left;
      }
      
      .nav-link {
        text-align: left;
        justify-content: flex-start;
        display: flex;
        align-items: center;
      }
      
      /* FIX: Ensure dropdown menus work properly on mobile */
      .dropdown-menu {
        position: static !important;
        transform: none !important;
        border: none;
        background-color: rgba(0,0,0,0.05);
        box-shadow: none;
        text-align: left;
        margin-left: 1rem;
        width: calc(100% - 2rem);
        display: none; /* Hide by default */
      }
      
      [data-bs-theme="dark"] .dropdown-menu {
        background-color: rgba(255,255,255,0.05);
      }
      
      .dropdown-menu.show {
        display: block !important; /* Show when toggled */
      }
      
      .dropdown-toggle::after {
        float: none;
        margin-top: 0.5rem;
        margin-left: 0.5rem;
      }
      
      /* Mobile top bar integration */
      .mobile-top-bar {
        border-bottom: 1px solid #dee2e6;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        text-align: left;
      }
      
      [data-bs-theme="dark"] .mobile-top-bar {
        border-bottom-color: #495057;
      }
      
      .mobile-top-bar a {
        display: block;
        padding: 0.5rem 0;
        color: var(--text-color) !important;
        text-decoration: none;
        text-align: left;
        transition: color 0.2s, transform 0.2s;
      }
      
      .mobile-top-bar a:hover {
        color: var(--primary-color) !important;
        transform: translateX(5px);
      }
      
      /* Stack brand logos horizontally on mobile */
      .navbar-brand-container {
        flex-direction: row;
        align-items: center;
      }
      
      .navbar-brand {
        margin-right: 0.5rem !important;
        margin-bottom: 0;
      }
      
      /* Dark mode toggle positioning on mobile */
      .navbar-toggler-container {
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }
    }

    /* Extra small devices */
    @media (max-width: 575.98px) {
      .navbar-brand img {
        max-height: 35px;
        width: 30px;
      }
      
      .brand-text {
        font-size: 0.5rem;
      }
      
      .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
      }
      
      /* Ensure logos stay side by side on mobile */
      .navbar-brand-container {
        flex-wrap: nowrap;
      }
      
      .navbar-brand {
        flex-shrink: 0;
      }
    }

    /* Animation classes */
    .bi-animate {
      transition: transform 0.2s;
    }

    a:hover .bi-animate, .btn:hover .bi-animate {
      transform: translateY(-1px);
    }

    /* Theme toggle button */
    .theme-toggle {
      border: none;
      background: transparent;
      font-size: 1.25rem;
      cursor: pointer;
      padding: 0.25rem 0.5rem;
      border-radius: 0.25rem;
      transition: background-color 0.2s, transform 0.2s, color 0.2s;
      color: var(--text-color);
    }

    .theme-toggle:hover {
      background-color: rgba(0,0,0,.1);
      transform: scale(1.1);
      color: var(--primary-color);
    }

    [data-bs-theme="dark"] .theme-toggle:hover {
      background-color: rgba(255,255,255,.1);
    }