/*
 Theme Name:   JomeTech Astra Child
 Theme URI:    https://jometechhosting.com/blog
 Description:  Astra child theme for JomeTech Hosting blog. Mirrors the exact header, footer and design system of the WHMCS main site using the same CSS design tokens.
 Author:       JomeTech
 Author URI:   https://jometechhosting.com
 Template:     astra
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  jometech-astra-child
*/

/* ── Import Astra parent theme ── */
@import url("../astra/style.css");


/* ============================================================
   1. DESIGN TOKENS
   Copied verbatim from WHMCS style.css — both sites share
   the same values so every colour, shadow, and radius matches.
============================================================ */

:root {
  --color-one:        #0000CC;
  --color-one-dark:   #0000A3;
  --color-one-light:  #3333D6;
  --color-two:        #FE2D2B;
  --color-two-dark:   #CB2422;
  --color-two-light:  #FE5756;
  --color-brand-gray: #EAEDEF;
  --white:            #fff;
  --black:            #000;

  --gray-50:   #fafbff;
  --gray-100:  #f4f5ff;
  --gray-150:  #EAEDEF;
  --gray-200:  #d5dfff;
  --gray-300:  #d8dae0;
  --gray-400:  #cdcedd;
  --gray-500:  #888faa;
  --gray-600:  #6d7081;
  --gray-700:  #505151;
  --gray-800:  #343f52;
  --gray-900:  #1d1e20;
  --gray-950:  #161718;

  --text-primary:   var(--gray-900);
  --text-secondary: var(--gray-700);
  --text-muted:     var(--gray-600);
  --text-light:     var(--gray-500);

  --bg-body:        var(--white);
  --bg-surface:     var(--gray-50);
  --bg-surface-alt: var(--gray-100);
  --bg-muted:       var(--color-brand-gray);

  --border-default: var(--gray-200);
  --border-light:   var(--gray-400);
  --border-muted:   var(--gray-300);

  --color-success:  #16a34a;
  --color-warning:  #d97706;
  --color-danger:   #dc2626;

  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   20px;
  --radius-full: 9999px;

  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  32px;
  --space-lg:  48px;
  --space-xl:  56px;
  --space-2xl: 72px;

  --font-family:    'DM Sans', sans-serif;
  --font-size-xs:   12px;
  --font-size-sm:   14px;
  --font-size-base: 16px;
  --font-size-md:   18px;
  --font-size-lg:   20px;
  --font-size-xl:   24px;
  --font-size-2xl:  28px;
  --font-size-3xl:  36px;
  --font-size-4xl:  48px;
  --font-size-5xl:  52px;
  --leading-tight:   1.2;
  --leading-snug:    1.3;
  --leading-normal:  1.5;
  --leading-relaxed: 1.625;

  --shadow-xs:  0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:  0 2px 4px rgba(0,0,0,.06);
  --shadow-md:  0 4px 12px rgba(0,0,0,.08);
  --shadow-lg:  0 10px 25px rgba(0,0,0,.1);
  --shadow-xl:  0 20px 45px rgba(0,0,0,.12);
  --shadow-2xl: 0 25px 60px rgba(0,0,0,.18);

  --transition:      all .3s ease-in-out;
  --transition-fast: all .15s ease-in-out;
  --transition-slow: all .5s ease-in-out;

  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  :root { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ============================================================
   2. RESET — suppress Astra's default header
============================================================ */

#masthead.site-header,
.ast-desktop-header-wrap,
.ast-primary-header-bar,
.ast-above-header-bar,
.ast-below-header-bar,
.ast-mobile-header-wrap,
.ast-masthead-custom-menu-items,
.ast-sticky-shrunk { display: none !important; }

body.ast-header-break-point,
.ast-header-break-point .ast-above-header-wrap { padding-top: 0 !important; }


/* ============================================================
   3. BASE
============================================================ */

* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-one) transparent;
}
*::-webkit-scrollbar { width: 8px; height: 8px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb { background-color: var(--color-one); border-radius: var(--radius-full); }
::selection { background: var(--color-one); color: var(--white); text-shadow: none; }

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: 24px;
  color: var(--text-primary);
  overflow-x: hidden;
  padding-top: 0;
}

a { text-decoration: none; }
a:hover { color: var(--color-one); text-decoration: none; }
img { max-width: 100%; height: auto; }
ul { margin: 0; padding: 0; }
ul li { list-style: none; }
.container { max-width: 1208px; }


/* ============================================================
   4. ACCESSIBILITY
============================================================ */

:focus-visible { outline: 2px solid var(--color-one); outline-offset: 2px; }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--color-one); outline-offset: 2px; border-radius: var(--radius-xs);
}
:focus:not(:focus-visible) { outline: none; }

.skip-link {
  background: var(--color-one); border-radius: var(--radius-sm);
  color: var(--white); font-size: var(--font-size-sm); font-weight: 700;
  left: -9999px; padding: 10px 20px; position: absolute; top: auto; z-index: 100000;
}
.skip-link:focus { left: 16px; top: 16px; outline: 2px solid var(--white); outline-offset: 2px; }

.sr-only {
  border: 0; clip: rect(0,0,0,0); height: 1px; margin: -1px;
  overflow: hidden; padding: 0; position: absolute; white-space: nowrap; width: 1px;
}


/* ============================================================
   5. UTILITIES
============================================================ */

.color-one   { color: var(--color-one); }
.color_1     { color: var(--gray-950); }
.color_2     { color: var(--text-primary); }
.bg_1        { background: var(--gray-100); }
.bold        { font-weight: 700; }
.mb--1 { margin-bottom: 10px; }
.mb--2 { margin-bottom: 20px; }
.mb--3 { margin-bottom: 30px; }
.gap-bottom  { margin-bottom: var(--space-lg); }
.bg-theme       { background: var(--color-one); }
.bg-theme-dark  { background: var(--black); }
.bg-dark1       { background: var(--gray-950); }
.bg-theme-light { background: var(--gray-200); }
.bg-theme-light.two { background-color: var(--gray-50); }
.br-1           { border-radius: var(--radius-xl); }
.h-svgo-icon    { display: inline-block; vertical-align: middle; }


/* ============================================================
   6. PROMO BAR
============================================================ */

.promo-bar {
  background-color: var(--gray-800);
  display: block; overflow: hidden;
  padding: 10px 0; position: relative; width: 100%;
}
.promo-bar p {
  color: rgba(255,255,255,.84);
  font-size: var(--font-size-base); font-weight: 400;
  line-height: 1.4; margin: 0; text-align: center;
}
.promo-bar p strong { color: var(--white); font-weight: 600; }
.promo-bar p a,
.promo-bar .btn-primary {
  border: 1px dashed var(--gray-300);
  border-radius: 30px;
  color: var(--white) !important;
  font-size: var(--font-size-sm); font-weight: 600;
  margin-inline-start: 10px; padding: 5px 15px;
  text-decoration: none; transition: var(--transition);
}
.promo-bar p a:hover,
.promo-bar .btn-primary:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.promo-bar .close-btn-bar {
  background: none; border: none; color: var(--white);
  cursor: pointer; line-height: 1; opacity: .8;
  padding: 0; position: absolute; right: 10px;
  top: 50%; transform: translateY(-50%); transition: opacity .2s;
}
.promo-bar .close-btn-bar:hover { opacity: 1; }
.promo-bar.closed { display: none; }

@media (max-width: 575px) { .promo-bar { padding-right: 35px; } }


/* ============================================================
   7. TOP BAR
============================================================ */

.topbar { background: rgba(0,0,204,.07); }
.top-bar { display: flex; justify-content: flex-end; }
.top-bar-dropdown { position: relative; }

.dropdown-btn {
  align-items: center; background-color: unset; border: unset;
  color: var(--text-primary); cursor: pointer; display: flex;
  font-size: var(--font-size-sm); font-weight: 500; padding: 6px 15px;
}
.top-bar .dropdown-btn i { font-size: var(--font-size-xs); margin-left: 5px; }

.dropdown-menu-two {
  background-color: var(--white); border: 0; border-radius: 5px;
  box-shadow: var(--shadow-md); display: none;
  left: 0; padding: 10px; position: absolute; top: 100%;
  transform: translateX(-50%); width: 200px; z-index: 999999999;
}
.top-bar-dropdown.language    .dropdown-menu-two { max-height: 300px; overflow: auto; }
.top-bar-dropdown.notification .dropdown-menu-two { width: 320px; }
.top-bar-dropdown.account     .dropdown-menu-two { width: 200px; }
.top-bar-dropdown.open        .dropdown-menu-two { display: block; }
.top-bar .dropdown-menu-two li { cursor: pointer; padding: 8px 15px; transition: var(--transition); }
.topbar .dropdown-menu-two li a { color: var(--black); font-size: 15px; transition: var(--transition); }
.topbar .dropdown-menu-two li:hover { background-color: var(--color-one); border-radius: 5px; }
.topbar .dropdown-menu-two li:hover a { color: var(--white); }

@media (max-width: 767px) {
  .top-bar-dropdown .dropdown-btn { display: inline-block; text-align: left; width: fit-content; }
  .top-bar .dropdown-btn i { margin-left: 0; }
  .top-bar-dropdown.notification .dropdown-menu-two { transform: unset; }
}


/* ============================================================
   8. MAIN HEADER
============================================================ */

.main-header {
  border-bottom: 1px solid rgba(0,0,0,.06);
  position: relative; transition: all .35s ease; width: 100%; z-index: 999;
}
.main-header.sticky,
.main-header.header-sticky {
  animation: headerSticky .95s ease forwards;
  background-color: rgba(255,255,255,.96);
  backdrop-filter: blur(10px); box-shadow: var(--shadow-md);
  left: 0; max-width: 100%; position: fixed; top: 0; width: 100%; z-index: 99;
}
@keyframes headerSticky {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(0); }
}
.main-header > * { align-items: center; display: flex; justify-content: space-between; position: relative; }
.main-header > .container { gap: 30px; margin: 0 auto; max-width: 1320px; padding-left: 20px; padding-right: 20px; }
.main-header .logo-box { flex-shrink: 0; margin-right: 20px; }
.main-header .logo-box a.logo { display: block; position: relative; }
.main-header .logo-box a.logo img,
.main-header .logo-box img { max-height: 46px; transition: all .35s ease; }

.main-header.elite-scrolled {
  backdrop-filter: blur(10px); background: rgba(255,255,255,.95);
  box-shadow: 0 4px 18px rgba(0,0,0,.06); padding: 4px 0;
}
.main-header.elite-scrolled .logo-box img { max-height: 36px; }
.main-header.elite-scrolled .menu-bar > ul > li > a { font-size: 15px; padding: 8px 10px; }

.main-header .menu-bar ul { list-style: none; margin: 0; padding: 0; }
.main-header .menu-bar { display: block; margin: 0; }

/* Header right buttons */
.main-header .header-right-btns { align-items: center; display: flex; gap: 10px; }
.main-header .header-right-btns .headerbtn {
  background: transparent; border: 2px solid var(--gray-950);
  border-radius: var(--radius-sm); color: var(--gray-950);
  display: block; font-size: var(--font-size-base); line-height: 1;
  padding: 10px 16px; text-transform: uppercase; transition: var(--transition);
}
.main-header .header-right-btns .headerbtn:hover {
  background: var(--color-one); border-color: var(--color-one); color: var(--white);
}

/* Hamburger */
.main-header .header-right-btns .hamburger {
  align-self: center; background: var(--black); border: 0; border-radius: 5px;
  cursor: pointer; display: none; flex-direction: column;
  height: 40px; justify-content: space-between; padding: 12px 10px;
  transition: all 500ms ease; width: 40px;
}
.main-header .header-right-btns .hamburger span {
  background: var(--white); height: 2px; transition: all 500ms ease; width: 83.33%;
}
.main-header .header-right-btns .hamburger span:first-child {
  animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
}
.main-header .header-right-btns .hamburger span:nth-child(2) {
  animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms; width: 100%;
}
.main-header .header-right-btns .hamburger span:last-child {
  animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms; width: 58.33%;
}
@keyframes burger-hover {
  0%   { width: 100%; }
  50%  { width: 50%; }
  100% { width: 100%; }
}


/* ============================================================
   9. DESKTOP NAVIGATION (>= 1200px)
============================================================ */

@media (min-width: 1200px) {
  .main-header {
    padding: 8px 0; background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px); border-bottom: 1px solid rgba(0,0,0,.06);
  }
  .main-header > .container { align-items: center; display: flex; justify-content: space-between; }
  .main-header .menu-bar { flex-grow: 1; display: flex; justify-content: center; }
  .main-header .menu-bar > ul {
    align-items: center; display: flex; gap: 32px;
    justify-content: space-between; list-style: none; margin: 0; padding: 0;
  }
  .main-header .menu-bar > ul > li { display: block; }
  .main-header .menu-bar > ul > li > a {
    color: var(--text-primary); display: block;
    font-size: 15px; font-weight: 600; padding: 12px 0;
    position: relative; transition: var(--transition-slow);
  }
  .main-header .menu-bar > ul > li > a::after {
    background: var(--color-one); bottom: 6px; content: ""; height: 2px;
    left: 0; position: absolute; transition: .35s ease; width: 0%;
  }
  .main-header .menu-bar > ul > li:hover > a::after,
  .main-header .menu-bar > ul > li.active > a::after { width: 100%; }
  .main-header .menu-bar > ul > li:hover > a,
  .main-header .menu-bar > ul > li.active > a { color: var(--color-one); }

  .main-header .menu-bar > ul > li.dropdown { position: relative; }
  .main-header .menu-bar > ul > li.dropdown > a > i {
    display: inline-block; font-size: var(--font-size-base); font-weight: 600; transition: all .3s ease;
  }
  .main-header .menu-bar > ul > li.dropdown:hover > a > i { color: var(--color-one); transform: rotate(180deg); }

  /* Dropdown panel */
  .main-header .menu-bar > ul > li.dropdown > ul {
    background: var(--white); border: 1px solid rgba(0,0,0,.05);
    border-radius: var(--radius-md); box-shadow: var(--shadow-xl);
    display: block; left: 0; min-width: 300px; opacity: 0;
    padding: 14px; position: absolute; top: 100%;
    transition: var(--transition); visibility: hidden; z-index: 999;
  }
  .main-header .menu-bar > ul > li.dropdown:hover > ul { opacity: 1; visibility: visible; }

  /* Megamenu */
  .main-header .menu-bar > ul > li.dropdown.megamenu.small { position: static; }
  .main-header .menu-bar > ul > li.dropdown.megamenu > ul {
    --bs-gutter-x: 1rem; --bs-gutter-y: 0;
    display: flex; flex-wrap: wrap; justify-content: space-between;
    margin-left: calc(-0.5 * var(--bs-gutter-x));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-top: calc(-1 * var(--bs-gutter-y)); width: 100%;
  }
  .main-header .menu-bar > ul > li.dropdown.megamenu > ul > * {
    flex-shrink: 0; margin-top: var(--bs-gutter-y); max-width: 100%;
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5); width: 100%;
  }
  .main-header .menu-bar > ul > li.dropdown.megamenu.small > ul { left: 50%; transform: translateX(-50%); }
  .main-header .menu-bar > ul > li.dropdown.megamenu.small.one > ul { left: unset; transform: unset; width: fit-content; }
  .main-header .menu-bar > ul > li.dropdown > ul > li > a + a { margin-top: 10px; }
  .main-header .menu-bar > ul > li.dropdown.megamenu.small.two > ul > * { flex: 0 0 auto; width: 33%; }
  .main-header .menu-bar > ul > li.dropdown.megamenu.small.one > ul > * { flex: 0 0 auto; width: 100%; }

  .main-header .menu-bar .logo-bar { display: none; }
  .main-header .menu-bar > ul > li.dropdown > ul > li.back { display: none; }
  .main-header .header-right-btns { gap: 12px; margin-left: 20px; }
  .main-header .header-right-btns .headerbtn { border-width: 1px; border-radius: var(--radius-md); font-size: var(--font-size-sm); padding: 8px 16px; }
}


/* ============================================================
   10. DROPDOWN ITEM STYLES
============================================================ */

.main-header .menu-bar .dropdown-items {
  border-radius: var(--radius-sm); cursor: pointer;
  display: flex; gap: 12px; padding: 12px 16px; transition: var(--transition);
}
.main-header .menu-bar .dropdown-items:hover { background: var(--gray-100); }
.main-header .menu-bar .dropdown-items .icon-boxs { display: block; min-width: 24px; }
.main-header .menu-bar .dropdown-items .icon-boxs i { color: var(--text-primary); font-size: var(--font-size-xl); transition: var(--transition); }
.main-header .menu-bar .dropdown-items:hover .icon-boxs i { color: var(--color-one); }
.main-header .menu-bar .dropdown-items .icon-boxs svg,
.main-header .menu-bar .dropdown-items .icon-boxs img { height: 24px; min-width: 24px; transition: var(--transition); vertical-align: middle; width: 24px; }
.main-header .menu-bar .dropdown-items:hover .icon-boxs svg { color: var(--color-one); fill: var(--color-one); }
.main-header .menu-bar .dropdown-items .content-box { display: flex; flex-direction: column; flex-grow: 1; gap: 2px; }
.main-header .menu-bar .dropdown-items .content-box .headings { display: flex; gap: 15px; }
.main-header .menu-bar .dropdown-items .content-box .headings .text {
  color: var(--text-primary); font-size: var(--font-size-base); font-weight: 500; line-height: 24px; transition: var(--transition-slow);
}
.main-header .menu-bar .dropdown-items .content-box .headings .off-badge {
  align-items: center; background-color: var(--gray-100); border: 0; border-radius: 6px;
  color: var(--color-one); display: inline-flex; font-size: var(--font-size-xs); font-weight: 600;
  height: fit-content; line-height: var(--leading-snug); padding: 4px 8px; white-space: nowrap; width: fit-content;
}
.main-header .menu-bar .dropdown-items .content-box .contents { color: var(--text-muted); display: block; font-weight: 400; line-height: 24px; }
.main-header .menu-bar .dropdown-items:hover .content-box .headings .text { color: var(--color-one); }
.main-header .menu-bar > ul > li.dropdown > ul > li.menu_img a { display: block; }
.main-header .menu-bar > ul > li.dropdown > ul > li.menu_img .dropdown-cta-heading,
.main-header .menu-bar > ul > li.dropdown > ul > li.menu_img h5 {
  align-items: center; color: var(--text-primary); display: flex;
  font-size: var(--font-size-md); font-weight: 700;
  justify-content: space-between; line-height: 24px; margin-top: 30px;
}
.main-header .menu-bar > ul > li.dropdown > ul > li.menu_img p { color: var(--text-primary); }

.dropdown-cta-heading { align-items: center; color: var(--text-primary); display: flex; font-size: var(--font-size-md); font-weight: 700; justify-content: space-between; line-height: 24px; margin-top: 30px; }
.dropdown-cta-heading svg { height: 20px; width: 20px; }


/* ============================================================
   11. MOBILE NAVIGATION (<= 1199px)
============================================================ */

@media (max-width: 1199px) {
  .main-header .menu-bar > ul > li.dropdown > ul > li.menu_img { display: none; }
  .main-header { padding: 10px 0; }
  .main-header .header-right-btns .hamburger { display: flex; }
  .main-header .menu-bar {
    background: var(--white); display: none; flex-direction: column;
    height: 100vh; justify-content: space-between; left: 0;
    max-height: 100vh; min-height: 100vh; overflow-y: auto;
    padding: 25px; position: fixed; top: 0; width: 100%; z-index: 9999;
  }
  .main-header .menu-bar.active { display: flex; }
  .main-header .menu-bar > ul { display: flex; flex-direction: column; }
  .main-header .menu-bar > ul > li > a {
    align-items: center; color: var(--black); display: flex;
    font-size: var(--font-size-base); font-weight: 500;
    justify-content: space-between; padding: 10px 0; width: 100%;
  }
  .main-header .menu-bar > ul > li + li { border-top: 1px solid var(--gray-300); }
  .main-header .menu-bar > ul > li:nth-child(2) { border-top: unset; }
  .main-header .menu-bar > ul > li.dropdown > a > i { display: block; transform: rotate(-90deg); transition: var(--transition); }
  .main-header .menu-bar > ul > li.dropdown > ul { display: none; }
  .main-header .menu-bar > ul > li.dropdown > ul.active {
    background: var(--white); display: flex; flex-direction: column;
    height: 100vh; left: 0; max-height: 100vh; min-height: 100vh;
    overflow-y: auto; padding: 25px; position: fixed; top: 0; width: 100%; z-index: 999;
  }
  .main-header .menu-bar > ul > li.dropdown > ul > li.back { border-bottom: 1px solid var(--gray-300); margin-bottom: 15px; padding-bottom: 10px; }
  .main-header .menu-bar > ul > li.dropdown > ul > li.back a { color: var(--text-primary); display: block; font-size: var(--font-size-base); font-weight: 600; }
  .main-header .menu-bar .logo-bar { align-items: center; display: flex; gap: 10px; justify-content: space-between; margin-bottom: 15px; }
  .main-header .menu-bar .logo-bar .logo { display: block; }
  .main-header .menu-bar .logo-bar .logo img { max-height: 40px; }
  .main-header .menu-bar .logo-bar .close-menu-btn {
    background: var(--color-brand-gray); border: 0; border-radius: var(--radius-xs);
    color: var(--gray-950); cursor: pointer; font-size: 26px; height: 40px; line-height: 40px; width: 40px;
  }
}

.main-header .menu-bar .menu-right-mob { display: none; }
@media (max-width: 440px) {
  .main-header .menu-bar .menu-right-mob { display: flex; flex-direction: column; gap: 15px; }
  .main-header .menu-bar .menu-right-mob .headerbtn {
    background: transparent; border: 2px solid var(--gray-950); border-radius: var(--radius-sm);
    color: var(--gray-950); display: block; font-size: var(--font-size-base); line-height: 1;
    padding: 10px 16px; text-align: center; text-transform: uppercase; transition: var(--transition);
  }
  .main-header .menu-bar .menu-right-mob .headerbtn:hover { background: var(--color-one); border-color: var(--color-one); color: var(--white); }
  .main-header .header-right-btns > .headerbtn { display: none; }
}


/* ============================================================
   12. BLOG CONTENT
============================================================ */

#main-body { padding: 40px 0 60px; min-height: 60vh; }
.primary-content { width: 100%; }


/* ============================================================
   13. FOOTER — exact copy of WHMCS dark footer (bg_1)
============================================================ */

.footer { padding-top: var(--space-xl); }
.footer .footer-nav h4 { display: block; font-size: var(--font-size-md); line-height: 24px; text-transform: uppercase; }
.footer .footer-nav li a { color: var(--gray-950); display: block; font-size: var(--font-size-sm); font-weight: 400; line-height: 24px; margin-bottom: 8px; padding-inline-end: 8px; transition: var(--transition); }
.footer .footer-nav li a:hover { color: var(--color-one); }
.footer .logo img { max-height: 40px; }
.footer .social-icon { justify-content: end; }
.footer .social-icon ul { display: flex; gap: 15px; justify-content: end; text-align: end; }
.footer .social-icon ul li a { display: block; height: 32px; width: 32px; }
.footer .payment_2 { align-items: start; display: flex; flex-wrap: wrap; gap: 20px; }
.footer_bottom ul { display: flex; flex-wrap: wrap; }
.footer_bottom ul li { margin-inline-end: 15px; }
.footer_bottom ul li a { color: var(--gray-950); font-size: var(--font-size-sm); font-weight: 400; line-height: 24px; transition: var(--transition); }
.footer_bottom ul li a:hover { color: var(--color-one); }
.footer_copyright { align-items: center; border-top: 1px solid var(--border-default); display: flex; justify-content: space-between; margin-top: 30px; padding: 20px 0; }
.footer_copyright p { color: var(--gray-950); font-size: var(--font-size-sm); font-weight: 400; line-height: 24px; }

@media (max-width: 767px) { .footer .social-icon { display: flex; justify-content: start; margin-top: 20px; } }

/* Dark footer (bg_1) — verbatim from WHMCS */
.footer.bg_1 { background: #0a0e27 !important; }

.footer.bg_1 .footer-nav h4,
.footer.bg_1 .bold.color_1 {
  color: #fff; font-size: 16px; letter-spacing: .5px;
  margin-bottom: 16px; position: relative; padding-bottom: 12px;
}
.footer.bg_1 .footer-nav h4::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  width: 30px; height: 3px; background: #0000CC; border-radius: 2px;
}
.footer.bg_1 p,
.footer.bg_1 a,
.footer.bg_1 li a,
.footer.bg_1 .footer-nav li a,
.footer.bg_1 .footer_bottom ul li a,
.footer.bg_1 .footer_copyright p { color: #8b8fa3; }
.footer.bg_1 .footer-nav li a:hover,
.footer.bg_1 .footer_bottom ul li a:hover,
.footer.bg_1 a:hover { color: #fff; }
.footer.bg_1 .social-icon ul li a svg { fill: #8b8fa3; }
.footer.bg_1 .social-icon ul li a:hover svg { fill: #fff; }
.footer.bg_1 .footer_copyright { border-top-color: rgba(255,255,255,.08); }
.footer.bg_1 .footer_bottom ul li a { color: #8b8fa3; }
.footer.bg_1 .payment_2 span {
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(255,255,255,.1) !important;
  color: #c4c7d4 !important;
}
.footer.bg_1 .logo img { filter: brightness(0) invert(1); }