 @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
      --crimson: #650C1B;
      --crimson-dark: #650C1B;
      --crimson-hover: #650C1B;
      --gold: #450004;
      --gold-light: #450004;
      --white: #ffffff;
      --off-white: #F9F6F1;
      --text-light: rgba(255, 255, 255, 0.85);
      --border-light: rgba(255, 255, 255, 0.12);
      --mega-bg: #ffffff;
      --mega-text: #1a1a1a;
      --mega-muted: #555;
      --mega-border: #f0e8d8;
      --shadow: 0 8px 40px rgba(91, 7, 21, 0.18);
    }

    * {
      box-sizing: border-box;
    }

 

    /* ─── MAIN NAVBAR ─── */
    .navbar {
      background: var(--crimson) !important;
      padding: 0;
      border-bottom: 3px solid var(--gold);
      position:sticky;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1050;
      box-shadow: 0 4px 24px rgba(91, 7, 21, 0.35);
    }

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--white) !important;
    padding: 0px 0;
    letter-spacing: 0.3px;
}
.navbar-brand span , .sidebar-brand span {
    color: var(--white);
    font: 600 12px/1.3 'Playfair Display', serif;
    margin-bottom: 10px;
}

    /* ─── NAV LINKS ─── */
 .navbar-nav .nav-link {
    font: 600 14px/1.5 var(--font1);
    color: var(--text-light) !important;
    padding: 15px 15px !important;
    letter-spacing: 0.2px;
    box-shadow: none;
    position: relative;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
    border-right: 1px solid rgba(158, 158, 158, 0.1);
}

    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      right: 50%;
      height: 3px;
      background: var(--gold);
      transition: left 0.25s, right 0.25s;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active,
    .navbar-nav .nav-item.show>.nav-link {
      color: var(--white) !important;
      background: rgba(255, 255, 255, 0.07);
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after,
    .navbar-nav .nav-item.show>.nav-link::after {
      left: 0;
      right: 0;
    }

    /* ─── DROPDOWN CARET ─── */
    /* Completely kill Bootstrap's default caret */
    .dropdown-toggle::after {
      display: none !important;
    }

    /* Our own chevron via a sibling span injected by JS */
    .nav-caret {
      display: inline-block;
      width: 8px;
      height: 8px;
      border-right: 2px solid rgba(255, 255, 255, 0.75);
      border-bottom: 2px solid rgba(255, 255, 255, 0.75);
      transform: rotate(45deg);
      margin-left: 6px;
      margin-bottom: 2px;
      vertical-align: middle;
      transition: transform 0.25s;
      flex-shrink: 0;
    }

    .nav-item.show>.nav-link .nav-caret {
      transform: rotate(-135deg);
      margin-bottom: -2px;
    }

    /* ─── STANDARD DROPDOWN ─── */
    .dropdown-menu {
      background: var(--mega-bg);
      border: none;
      border-top: 3px solid var(--gold);
      border-radius: 0px;
      box-shadow: var(--shadow);
      padding: 0px 0;
      min-width: 230px;
      margin-top: 0 !important;
      animation: dropDown 0.2s ease;
    }

    @keyframes dropDown {
      from {
        opacity: 0;
        transform: translateY(-8px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .dropdown-item {
      font-size: 13.5px;
      color: var(--mega-text);
      padding: 9px 20px;
      font-weight: 600;
      transition: background 0.15s, color 0.15s, padding-left 0.15s;
      display: flex;
      align-items: center;
      gap: 10px;
      border-bottom: 1px solid var(--mega-border);
    }

    .dropdown-item i {
      color: var(--crimson);
      width: 16px;
      font-size: 13px;
    }

    .dropdown-item:hover {
      background: var(--crimson);
      color:  var(--off-white);
      /* padding-left: 26px; */
    }
        .dropdown-item:hover  i {
          color: var(--off-white);
        }

    .dropdown-divider {
      border-color: var(--mega-border);
      margin: 4px 0;
    }

    /* ─── HALF MEGA MENU ─── */
    .half-mega-menu {
      width: 580px;
      padding: 0;
      border-radius: 0px;
      border-top: 3px solid var(--gold);
      overflow: hidden;
      /* Don't let Bootstrap auto-position break it */
      left: 0 !important;
      right: auto !important;
    }

    /* Flip to right-align when near right edge */
    .half-mega-menu.drop-left {
      left: auto !important;
      right: 0 !important;
    }

    .half-mega-inner {
      display: grid;
      grid-template-columns: 1fr 200px;
    }

    .half-mega-links {
      padding: 20px 4px 20px 0;
    }

    .half-mega-links .mega-col-title {
      padding: 0 20px 10px;
      margin-bottom: 4px;
    }

    .half-mega-links .dropdown-item {
      padding: 9px 20px;
      border-radius: 0;
    }

    /* .half-mega-links .dropdown-item:hover {
      padding-left:0px;
    } */

    .half-mega-panel {
      background: linear-gradient(160deg, var(--crimson) 0%, var(--crimson-dark) 100%);
      padding: 24px 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      color: white;
    }

    .half-mega-panel .panel-label {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--gold-light);
      margin-bottom: 8px;
    }

    .half-mega-panel h6 {
      font-family: var(--font1);
      font-size: 15px;
      line-height: 1.4;
      margin-bottom: 10px;
      color: white;
    }

    .half-mega-panel p {
      font-size: 12px;
      opacity: .75;
      margin-bottom: 16px;
      line-height: 1.5;
    }

    .half-mega-panel .stat-row {
      display: flex;
      gap: 12px;
      margin-bottom: 16px;
    }

    .half-mega-panel .stat {
      text-align: center;
    }

    .half-mega-panel .stat strong {
      display: block;
      font-size: 18px;
      font-weight: 700;
      color: var(--gold-light);
    }

    .half-mega-panel .stat span {
      font-size: 10px;
      opacity: .7;
    }

    .half-mega-panel a.panel-btn {
      display: block;
      text-align: center;
      background: var(--gold);
      color: var(--crimson-dark);
      font-size: 12px;
      font-weight: 700;
      padding: 8px 14px;
      border-radius: 6px;
      text-decoration: none;
      transition: background 0.2s;
    }

    .half-mega-panel a.panel-btn:hover {
      background: var(--gold-light);
    }

    /* mobile: half mega stacks */
    @media (max-width: 991.98px) {
         .navbar { position: sticky; top: 0 !important; }
      .half-mega-menu {
        width: 100% !important;
      }

      .half-mega-inner {
        grid-template-columns: 1fr !important;
      }

      .half-mega-panel {
        display: none;
      }

      .half-mega-links {
        border-right: none !important;
      }
    }

    .mega-menu {
      width: 100%;
      left: 0 !important;
      right: 0;
      padding: 0;
      border-radius: 0 0 12px 12px;
    }

    .mega-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }

    .mega-col {
      padding: 28px 24px;
      border-right: 1px solid var(--mega-border);
    }

    .mega-col:last-child {
      border-right: none;
    }

 .mega-col-title {
    font-family: var(--font1);
    font-size: 14px;
    font-weight: 600;
    color: var(--crimson);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--mega-border);
}

    .mega-link {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 8px 0;
      text-decoration: none;
      color: var(--mega-text);
      font-size: 13.5px;
      font-weight: 500;
      border-radius: 6px;
      transition: color 0.15s;
    }

    .mega-link i {
      color: var(--crimson);
      width: 18px;
      font-size: 13px;
      margin-top: 2px;
      flex-shrink: 0;
    }

    .mega-link:hover {
      color: var(--crimson);
    }

    .mega-link:hover .mega-link-label {
      text-decoration: underline;
    }

    .mega-link-sub {
      display: block;
      font-size: 11.5px;
      color: var(--mega-muted);
      font-weight: 400;
      margin-top: 1px;
    }

    .mega-cta {
      background: var(--off-white);
      border-top: 1px solid var(--mega-border);
      padding: 14px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-radius: 0 0 12px 12px;
    }

    .mega-cta span {
      font-size: 13px;
      color: var(--mega-muted);
    }

    .mega-cta a {
      font-size: 13px;
      font-weight: 600;
      color: var(--crimson);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .mega-cta a:hover {
      color: var(--crimson-dark);
    }

    /* ─── HIGHLIGHT BOX in mega ─── */
    .mega-highlight {
      background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
      border-radius: 10px;
      padding: 18px;
      color: white;
      margin-top: 8px;
    }

    .mega-highlight h6 {
      font-family: 'Playfair Display', serif;
      font-size: 14px;
      margin-bottom: 6px;
    }

    .mega-highlight p {
      font-size: 12px;
      opacity: .8;
      margin-bottom: 12px;
    }

    .mega-highlight a {
      background: var(--gold);
      color: var(--crimson-dark);
      font-size: 12px;
      font-weight: 700;
      padding: 6px 14px;
      border-radius: 5px;
      text-decoration: none;
      display: inline-block;
    }

    /* ─── TOGGLER ─── */
    .navbar-toggler {
      border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
      padding: 8px 12px;
      border-radius: 6px;
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,0.9)' stroke-width='2.5' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
    }

    /* ─── SEARCH BUTTON ─── */
    .btn-search {
      background: transparent;
      border: 1.5px solid rgba(255, 255, 255, 0.35);
      color: white;
      border-radius: 6px;
      padding: 6px 12px;
      font-size: 14px;
      transition: background 0.2s, border-color 0.2s;
    }

    .btn-search:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.6);
      color: white;
    }



    /* ─── SIDEBAR DRAWER ─── */
    .sidebar-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.55);
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s;
    }
    .sidebar-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .sidebar {
      position: fixed;
      top: 0; left: 0; bottom: 0;
      width: 300px;
      max-width: 88vw;
      background: var(--crimson-dark);
      z-index: 2001;
      transform: translateX(-100%);
      transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
    .sidebar.active { transform: translateX(0); }

    /* Sidebar header */
    .sidebar-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 18px;
      background: var(--crimson);
      border-bottom: 3px solid var(--gold);
      flex-shrink: 0;
    }
    .sidebar-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      color: white;
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 600;
      text-decoration: none;
    }
    .sidebar-brand .brand-icon {
      width: 32px; height: 32px;
      background: var(--gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .sidebar-brand .brand-icon i { color: var(--crimson-dark); font-size: 14px; }
    .sidebar-brand span span { color: var(--gold); }
    .sidebar-close {
      background: rgba(255,255,255,0.1);
      border: none;
      color: white;
      width: 34px; height: 34px;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
      flex-shrink: 0;
    }
    .sidebar-close:hover { background: rgba(255,255,255,0.2); }

    /* Sidebar body scroll */
    .sidebar-body {
      flex: 1;
      overflow-y: auto;
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
    }
    .sidebar-body::-webkit-scrollbar { width: 4px; }
    .sidebar-body::-webkit-scrollbar-track { background: transparent; }
    .sidebar-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 4px; }

    /* Sidebar nav items */
    .sb-item {
      border-bottom: 1px solid var(--border-light);
    }
.sb-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:13px 18px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font1);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    user-select: none;
}
    .sb-link:hover { background: rgba(255,255,255,0.07); color: white; }
    .sb-link.active-link { background: rgba(255,255,255,0.07); color: white; }
    .sb-link .sb-label { display: flex; align-items: center; gap: 10px; }
    .sb-link .sb-label i { color: var(--gold-light); width: 16px; font-size: 13px; }

    /* Sidebar caret */
 .sb-caret {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 2px solid rgb(255 255 255);
    border-bottom: 2px solid rgb(255 255 255);
    transform: rotate(45deg);
    transition: transform 0.25s;
    flex-shrink: 0;
}
    .sb-item.open > .sb-link .sb-caret {
      transform: rotate(-135deg);
    }

    /* Sidebar submenu */
    .sb-submenu {
      display: none;
      background: rgba(0,0,0,0.2);
      border-left: 3px solid var(--gold);
    }
    .sb-submenu.open { display: block; }

    /* Submenu section title */
    .sb-section-title {
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      color: var(--white);
      padding: 12px 18px 6px 18px;
      opacity: 0.85;
    }

    /* Submenu links */
    .sb-sub-link {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 18px 10px 22px;
      color: var(--white);
      font-size: 13.5px;
      font-weight: 400;
      text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      transition: background 0.15s, color 0.15s, padding-left 0.15s;
      line-height: 1.35;
    }
    .sb-sub-link:last-child { border-bottom: none; }
    .sb-sub-link i { color: var(--white); width: 14px; font-size: 12px; flex-shrink: 0; }
    .sb-sub-link:hover {
      background: rgba(255,255,255,0.07);
      color: var(--gold-light);
      padding-left: 28px;
    }
    .sb-divider { border-color: rgba(255,255,255,0.08); margin: 2px 0; }

    /* Sidebar footer */
    .sidebar-footer {
      padding: 14px 18px;
      border-top: 1px solid var(--border-light);
      background: var(--crimson);
      flex-shrink: 0;
      display: flex;
      gap: 12px;
      align-items: center;
    }
    .sidebar-footer a {
      color: rgba(255,255,255,0.6);
      font-size: 14px;
      transition: color 0.2s;
    }
    .sidebar-footer a:hover { color: var(--gold-light); }
   .sidebar-footer .footer-contact {
    font-size: 11.5px;
    color: rgb(255 255 255);
    margin-left: auto;
}

    /* Only show sidebar toggler on mobile */
    .sidebar-toggler { display: none; }
    @media (max-width: 991.98px) {
      .sidebar-toggler {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.1);
        border: 1.5px solid rgba(255,255,255,0.3);
        color: white;
        width: 38px; height: 38px;
        border-radius: 6px;
        font-size: 16px;
        cursor: pointer;
        transition: background 0.2s;
        flex-shrink: 0;
      }
      .sidebar-toggler:hover { background: rgba(255,255,255,0.18); }
      /* Hide Bootstrap's default toggler on mobile — use sidebar instead */
      .navbar-toggler { display: none !important; }
    }
    /* ─── MOBILE & TABLET (< 992px) ─── */
    @media (max-width: 991.98px) {

      /* top-bar hidden on mobile → navbar sits at top:0 */
      .top-bar {
        display: none !important;
      }

      /* Collapse panel */
      .navbar-collapse {
        background: var(--crimson-dark);
        border-top: 2px solid var(--gold);
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
      }

      /* Nav links */
      .navbar-nav {
        padding: 0;
        width: 100%;
      }

      .navbar-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-light);
      }

      .navbar-nav .nav-item:last-child {
        border-bottom: none;
      }

      .navbar-nav .nav-link {
        padding: 14px 20px !important;
        font-size: 15px;
        white-space: normal;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      /* Kill gold underline animation on mobile */
      .navbar-nav .nav-link::after {
        display: none !important;
      }

      /* Caret on mobile — float right inside flex */
      .nav-caret {
        border-color: rgba(255, 255, 255, 0.6) !important;
        margin-left: auto;
        margin-bottom: 0;
        flex-shrink: 0;
        transform: rotate(45deg);
      }

      .nav-item.show>.nav-link .nav-caret {
        transform: rotate(-135deg);
        margin-bottom: 0;
      }

      /* ── Standard dropdown ── */
      .dropdown-menu {
        position: static !important;
        float: none;
        width: 100% !important;
        min-width: 100%;
        border-top: none;
        border-left: 3px solid var(--gold);
        border-radius: 0;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.22);
        padding: 4px 0;
        margin: 0 !important;
        animation: none !important;
        transform: none !important;
      }

      .dropdown-item {
        color: rgba(255, 255, 255, 0.82);
        padding: 11px 20px 11px 28px;
        font-size: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        white-space: normal;
        line-height: 1.4;
      }

      .dropdown-item:last-child {
        border-bottom: none;
      }

      .dropdown-item i {
        color: var(--gold-light);
        flex-shrink: 0;
      }

      .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.08);
        color: var(--gold-light);
        padding-left: 34px;
      }

      .dropdown-divider {
        border-color: rgba(255, 255, 255, 0.1);
        margin: 2px 0;
      }

      /* ── Half mega menu mobile ── */
      .half-mega-menu {
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        border-top: none;
        border-left: 3px solid var(--gold);
      }

      .half-mega-menu.drop-left {
        left: 0 !important;
        right: 0 !important;
      }

      .half-mega-inner {
        grid-template-columns: 1fr !important;
      }

      .half-mega-links {
        padding: 4px 0 !important;
        border-right: none !important;
      }

      .half-mega-links .mega-col-title {
        padding: 12px 20px 8px !important;
        color: var(--gold-light);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 0;
      }

      .half-mega-panel {
        display: none !important;
      }

      /* ── Full mega menu mobile ── */
      .mega-menu {
        position: static !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        border-top: none;
        border-left: 3px solid var(--gold);
        border-radius: 0;
        padding: 0;
        box-shadow: none;
        animation: none !important;
      }

      .mega-inner {
        grid-template-columns: 1fr !important;
        gap: 0;
      }

      .mega-col {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 12px 20px;
      }

      .mega-col:last-child {
        border-bottom: none;
      }

      .mega-col-title {
        color: var(--gold-light);
        font-size: 11px;
        padding-bottom: 8px;
        margin-bottom: 4px;
        border-bottom-color: rgba(255, 255, 255, 0.12);
      }

      .mega-link {
        color: rgba(255, 255, 255, 0.82);
        padding: 8px 8px;
        font-size: 14px;
      }

      .mega-link i {
        color: var(--gold-light);
      }

      .mega-link:hover {
        color: var(--gold-light);
      }

      .mega-link-sub {
        color: rgba(255, 255, 255, 0.45);
      }

      .mega-cta {
        display: none !important;
      }

      .mega-highlight {
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
      }

      .mega-highlight h6 {
        color: var(--gold-light);
      }

      .mega-highlight p {
        color: rgba(255, 255, 255, 0.7);
      }

      .mega-highlight a {
        background: var(--gold);
        color: var(--crimson-dark);
      }

      /* Search row */
      .btn-search {
        width: 100%;
        margin: 10px 20px;
        width: calc(100% - 40px);
      }
    }

    /* ─── TABLET ONLY (iPad 768–991px) ─── */
    @media (min-width: 768px) and (max-width: 991.98px) {

      /* Show top bar on tablets */
      .top-bar {
        display: block !important;
      }

      /* Mega columns: 2-col grid on tablet */
      .mega-inner {
        grid-template-columns: 1fr 1fr !important;
      }

      .mega-col:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
      }

      /* Half mega: 2-col on tablet */
      .half-mega-inner {
        grid-template-columns: 1fr 1fr !important;
      }

      .half-mega-links {
        border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
      }

      .half-mega-links:last-child {
        border-right: none !important;
      }
    }