/* ==========================================================================
   AK HISTORICAL POINT - JANNAH THEME EXACT REPLICA STYLESHEET
   100% Faithful Replica of https://historicalpoint.com/ with AK Branding
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
  --brand-color: #ba1c03;
  --brand-hover: #e02823;
  --dark-brand-color: #961602;
  --bright-color: #FFFFFF;
  --base-color: #2c2f34;
  --bg-dark-body: #1c1d21;
  --bg-card: #2c2f34;
  --bg-footer: #252525;
  --bg-site-info: #181818;
  --text-main: #FFFFFF;
  --text-muted: #aaaaaa;
  --border-color: rgba(255, 255, 255, 0.08);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark-body);
  color: #f2f2f2;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

a:hover {
  color: #fe4641;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* ==========================================================================
   HEADER & NAVIGATION (#theme-header, #main-nav)
   ========================================================================== */
#theme-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

#main-nav {
  background-color: #ba1c03;
  height: 90px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #8e1401;
}

.main-menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.header-layout-1-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-layout-1-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo-img {
  max-height: 78px;
  width: auto;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.45));
  transition: transform 0.25s ease, filter 0.25s ease;
  object-fit: contain;
  display: block;
}

.header-logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.65));
}

.header-brand-text {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.main-menu {
  display: flex;
  align-items: center;
  height: 100%;
}

.menu-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
  height: 100%;
}

.menu-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.menu-item > a {
  color: #FFFFFF;
  font-size: 14.5px;
  font-weight: 700;
  padding: 0 16px;
  height: 90px;
  display: flex;
  align-items: center;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.menu-item.tie-current-menu > a,
.menu-item:hover > a {
  background-color: rgba(0, 0, 0, 0.18);
  color: #FFFFFF;
}

/* Sub-menu Dropdown */
.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background-color: #1f2024;
  border-top: 3px solid #ba1c03;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  list-style: none;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease-in-out;
  z-index: 1000;
}

.sub-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: #f2f2f2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sub-menu li a:hover {
  background-color: #ba1c03;
  color: #FFFFFF;
  padding-left: 24px;
}

/* Header Components (Search & Mobile Menu triggers) */
.header-components {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tie-search-trigger {
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.2s;
}

.tie-search-trigger:hover {
  background: rgba(0, 0, 0, 0.35);
  transform: scale(1.05);
}

.mobile-menu-trigger {
  display: none;
  width: 40px;
  height: 40px;
  color: #FFFFFF;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ==========================================================================
   MAIN CONTENT & SIDEBAR ROW (.tie-row, #main-content-row)
   ========================================================================== */
.site-content {
  padding-top: 25px;
  padding-bottom: 40px;
}

.tie-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.main-content {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
  padding-left: 15px;
  padding-right: 15px;
}

.sidebar {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding-left: 15px;
  padding-right: 15px;
}

.container-wrapper {
  background-color: var(--bg-card);
  border-radius: 15px;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-bottom: 30px;
}

/* Article Styling */
.entry-header {
  margin-bottom: 20px;
  border-bottom: 2px solid #ba1c03;
  padding-bottom: 12px;
}

.entry-title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
}

.wp-block-paragraph {
  margin-bottom: 22px;
  font-size: 15.5px;
  line-height: 1.8;
  color: #e2e8f0;
}

.wp-block-paragraph a {
  color: #fe4641;
  text-decoration: underline;
}

.wp-block-paragraph a:hover {
  color: #FFFFFF;
}

.wp-block-separator {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 28px 0;
}

/* Figures / Banner Images */
.wp-block-image {
  margin: 0 0 24px;
  text-align: center;
}

.wp-block-image a {
  display: block;
  overflow: hidden;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.wp-block-image img {
  width: 100%;
  border-radius: 15px;
  transition: transform 0.35s ease-out;
}

.wp-block-image a:hover img {
  transform: scale(1.02);
}

.wp-element-caption {
  margin-top: 10px;
  font-size: 13.5px;
  color: #aaaaaa;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Article Headings */
.wp-block-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin-top: 30px;
  margin-bottom: 16px;
  border-left: 4px solid #ba1c03;
  padding-left: 12px;
}

h3.wp-block-heading {
  font-size: 18px;
  font-weight: 600;
  color: #fe4641;
  border-left: none;
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 12px;
}

/* ==========================================================================
   SIDEBAR WIDGETS
   ========================================================================== */
.theiaStickySidebar {
  position: sticky;
  top: 110px;
}

.widget {
  background-color: var(--bg-card);
  border-radius: 15px;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.2);
  padding: 24px;
  margin-bottom: 25px;
}

.widget-title.the-global-title {
  border-bottom: 2px solid #ba1c03;
  margin-bottom: 20px;
  padding-bottom: 8px;
  position: relative;
}

.widget-title .the-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
}

/* Search Form Widget */
.search-form {
  display: flex;
  align-items: center;
  width: 100%;
}

.search-form label {
  flex: 1;
}

.search-field {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  background: #1c1d21;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px 0 0 5px;
  color: #FFFFFF;
  font-size: 14px;
  outline: none;
}

.search-field:focus {
  border-color: #ba1c03;
}

.search-submit {
  height: 42px;
  padding: 0 20px;
  background-color: #ba1c03;
  color: #FFFFFF;
  border: none;
  border-radius: 0 5px 5px 0;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  transition: background 0.2s;
}

.search-submit:hover {
  background-color: #e02823;
}

/* Recent Posts List Widget */
.posts-list-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.widget-single-post-item {
  display: flex;
  gap: 14px;
  align-items: center;
}

.post-widget-thumbnail {
  flex-shrink: 0;
  width: 90px;
  height: 62px;
  border-radius: 5px;
  overflow: hidden;
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.25s;
}

.widget-single-post-item:hover .post-thumb img {
  transform: scale(1.08);
}

.post-widget-body {
  flex: 1;
}

.post-widget-body .post-title {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-widget-body .post-title:hover {
  color: #fe4641;
}

.post-meta {
  font-size: 11.5px;
  color: rgba(170, 170, 170, 0.7);
  margin-top: 4px;
}

/* Categories List Widget */
.tie-widget-categories ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 5px;
}

.cat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13.5px;
}

.cat-item a {
  color: #e2e8f0;
}

.cat-item a:hover {
  color: #fe4641;
  padding-left: 4px;
}

.cat-counter span {
  background: rgba(255, 255, 255, 0.08);
  color: #fe4641;
  font-weight: 700;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 35px;
}

/* Pages List Widget */
.widget_pages ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 5px;
}

.page_item {
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 13.5px;
}

.page_item a {
  color: #e2e8f0;
  display: block;
}

.page_item a:hover {
  color: #fe4641;
  padding-left: 4px;
}

/* ==========================================================================
   FOOTER (#footer, #site-info)
   ========================================================================== */
#footer {
  background-color: var(--bg-footer);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 40px;
}

.footer-widget-area .tie-row {
  display: flex;
  flex-wrap: wrap;
}

.tie-col-sm-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 15px;
}

.footer-boxed-widget-area .container-wrapper {
  background: #1c1d21;
  padding: 20px;
}

/* Site Info / Bottom Copyright */
#site-info {
  background-color: var(--bg-site-info);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-info .tie-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright-text {
  font-size: 13px;
  color: #aaaaaa;
}

.copyright-text a {
  color: #fe4641;
}

.footer-menu ul {
  display: flex;
  list-style: none;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-menu ul li a {
  font-size: 13px;
  color: #aaaaaa;
}

.footer-menu ul li a:hover {
  color: #fe4641;
}

/* Back to Top Button */
#go-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 44px;
  height: 44px;
  background-color: #ba1c03;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: all 0.25s;
  z-index: 999;
}

#go-to-top:hover {
  background-color: #e02823;
  transform: translateY(-3px);
}

/* ==========================================================================
   POPUP SEARCH MODAL & STREAMING MODAL
   ========================================================================== */
.tie-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.tie-popup-search-wrap-inner {
  width: 100%;
  max-width: 650px;
  position: relative;
}

.tie-btn-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: #FFFFFF;
  font-size: 24px;
  cursor: pointer;
}

.tie-popup-search-form {
  display: flex;
  width: 100%;
  border-bottom: 2px solid #ba1c03;
  padding-bottom: 8px;
}

.tie-popup-search-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 26px;
  font-family: 'Poppins', sans-serif;
  color: #FFFFFF;
}

.tie-popup-search-submit {
  background: transparent;
  border: none;
  color: #ba1c03;
  cursor: pointer;
}

/* Streaming Modal */
.stream-modal-box {
  background: #1f2024;
  border-radius: 15px;
  max-width: 900px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
  position: relative;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 991px) {
  .main-content {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .sidebar {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 30px;
  }
  .theiaStickySidebar {
    position: static;
  }
  .tie-col-sm-4 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 25px;
  }
  .menu-list {
    display: none;
  }
  .mobile-menu-trigger {
    display: flex;
  }
  .site-info .tie-row {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ==========================================================================
   HISTORICALPOINT.COM STACKED SEASONS & EPISODE PILL BUTTONS
   ========================================================================== */
.hp-season-section {
  margin-bottom: 35px;
  scroll-margin-top: 100px;
}

.hp-season-badge-btn {
  display: table;
  margin: 32px auto 16px auto;
  background-color: #FFFFFF;
  color: #111111 !important;
  padding: 11px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  text-transform: capitalize;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5px;
  user-select: none;
}

.hp-episodes-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 25px;
}

.hp-episode-pill-link {
  display: block;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  background-color: #ba1c03;
  color: #FFFFFF !important;
  padding: 13px 20px;
  border-radius: 11px;
  text-align: center;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hp-episode-pill-link:hover {
  background-color: #e02823;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(186, 28, 3, 0.45);
  color: #FFFFFF !important;
}

.hp-episode-pill-link:active {
  transform: translateY(0);
}

.hp-season-quick-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  background: #191a1e;
  padding: 12px 16px;
  border-radius: 10px;
  margin: 20px 0 30px 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hp-season-quick-nav span {
  font-size: 12px;
  font-weight: 700;
  color: #fe4641;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 6px;
}

.hp-season-jump-btn {
  background: #2c2f34;
  color: #FFF !important;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s;
}

.hp-season-jump-btn:hover {
  background: #ba1c03;
  border-color: #ba1c03;
  color: #FFF !important;
}

/* ==========================================================================
   DOWNLOAD-FOCUSED EPISODE PAGE STYLES
   ========================================================================== */
.hp-download-card {
  background: #191a1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 4px solid #ba1c03;
  border-radius: 12px;
  padding: 28px 20px;
  margin: 25px 0;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hp-download-title {
  font-size: 19px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.hp-download-sub {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 22px;
}

.hp-download-pill-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}

.hp-dl-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #ba1c03;
  color: #FFFFFF !important;
  padding: 14px 24px;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hp-dl-pill:hover {
  background-color: #e02823;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(186, 28, 3, 0.5);
}

.hp-dl-pill.blueray {
  background-color: #0284c7;
}

.hp-dl-pill.blueray:hover {
  background-color: #0369a1;
}

.hp-story-card {
  background: #1f2024;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 26px;
  margin: 25px 0;
  font-size: 15px;
  line-height: 1.85;
  color: #cbd5e1;
}

.hp-story-card h2, .hp-story-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  margin-top: 20px;
  margin-bottom: 12px;
  border-left: 4px solid #ba1c03;
  padding-left: 10px;
}

.hp-story-card h2:first-child {
  margin-top: 0;
}

.hp-story-card p {
  margin-bottom: 16px;
}

/* ==========================================================================
   MOBILE OFF-CANVAS DRAWER MENU & ACTION BUTTONS
   ========================================================================== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 86vw;
  height: 100%;
  background: #141518;
  box-shadow: 6px 0 30px rgba(0, 0, 0, 0.85);
  z-index: 99999;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-right: 2px solid rgba(212, 175, 55, 0.3);
}
.mobile-menu-drawer.active {
  transform: translateX(0);
}

.mobile-drawer-header {
  padding: 18px 20px;
  background: linear-gradient(135deg, #ba1c03 0%, #7f1201 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid rgba(212, 175, 55, 0.35);
}
.mobile-drawer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
}
.mobile-drawer-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #d4af37;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
.mobile-drawer-title {
  font-size: 15px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}
.mobile-drawer-close {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.mobile-drawer-close:hover {
  background: #FFFFFF;
  color: #ba1c03;
}

.mobile-drawer-actions {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #191a1e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.btn-mobile-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF !important;
  font-weight: 800;
  font-size: 13.5px;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease;
}
.btn-mobile-whatsapp:hover {
  transform: translateY(-2px);
}
.btn-mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(186, 28, 3, 0.15);
  border: 1.5px solid #ba1c03;
  color: #FFFFFF !important;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: background 0.2s ease;
}
.btn-mobile-contact:hover {
  background: rgba(186, 28, 3, 0.28);
}
.btn-mobile-contact .contact-label {
  font-size: 11px;
  text-transform: uppercase;
  color: #fca5a5;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-mobile-contact .contact-val {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  word-break: break-all;
}

.mobile-drawer-nav {
  padding: 12px 0;
  flex: 1;
}
.mobile-nav-heading {
  padding: 8px 20px 4px 20px;
  font-size: 11px;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 800;
  letter-spacing: 0.8px;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  color: #e2e8f0;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.2s ease;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  background: rgba(186, 28, 3, 0.15);
  color: #fe4641;
  border-left: 4px solid #fe4641;
}


