/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.1
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

/* === 123B E-E-A-T SEO 2026 Footer === */
:root {
  --bxb-footer-bg: #0b1426;
  --bxb-footer-bg-2: #0a1020;
  --bxb-footer-accent: #ee2020;
  --bxb-footer-accent-2: #ffb84d;
  --bxb-footer-text: #e6ecf5;
  --bxb-footer-muted: #9aa6b8;
  --bxb-footer-border: rgba(255, 255, 255, 0.08);
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/

}

/* Hide legacy Flatsome footer wrappers when 123B E-E-A-T footer is active */
footer.footer-wrapper > #section_1909285240,
footer.footer-wrapper > #section_1896615715,
footer.footer-wrapper > .footer-widgets.footer.footer-1,
footer.footer-wrapper > .footer-widgets.footer.footer-2,
body .absolute-footer.dark.medium-text-center.text-center {
  display: none !important;
}

/* Container */
.bxb-footer-wrap {
  background:
    radial-gradient(1100px 380px at 12% -10%, rgba(238, 32, 32, 0.18), transparent 65%),
    radial-gradient(900px 320px at 90% 0%, rgba(255, 184, 77, 0.10), transparent 65%),
    linear-gradient(180deg, var(--bxb-footer-bg-2) 0%, var(--bxb-footer-bg) 100%);
  color: var(--bxb-footer-text);
  font-family: Roboto, sans-serif;
  font-weight: 400;
  position: relative;
  margin-top: 0;
  border-top: 1px solid var(--bxb-footer-border);
  padding: 56px 0 0;
  line-height: 1.7;
}

.bxb-footer-wrap *,
.bxb-footer-wrap *::before,
.bxb-footer-wrap *::after { box-sizing: border-box; }

.bxb-footer-wrap a { color: var(--bxb-footer-text); text-decoration: none; transition: color .2s ease; }
.bxb-footer-wrap a:hover { color: var(--bxb-footer-accent-2); }

.bxb-footer-wrap .bxb-container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

/* Trust strip */
.bxb-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  justify-content: center;
  padding: 18px 0;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--bxb-footer-border);
  font-size: 13px;
  color: var(--bxb-footer-muted);
}
.bxb-trust-strip .bxb-trust-item { display: inline-flex; align-items: center; gap: 8px; }
.bxb-trust-strip .bxb-trust-ico {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 184, 77, 0.12);
  color: var(--bxb-footer-accent-2);
  font-size: 14px;
  flex-shrink: 0;
}
.bxb-trust-strip strong { color: var(--bxb-footer-text); font-weight: 600; }

/* Main grid */
.bxb-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.1fr;
  gap: 36px 32px;
  padding-bottom: 36px;
}

/* Brand block */
.bxb-brand .bxb-logo {
  display: inline-block;
  margin-bottom: 18px;
}
.bxb-brand .bxb-logo img {
  display: block;
  max-height: 56px;
  width: auto;
}
.bxb-brand .bxb-desc {
  color: var(--bxb-footer-muted);
  font-size: 14px;
  margin: 0 0 18px;
  max-width: 380px;
}
.bxb-brand .bxb-desc strong { color: var(--bxb-footer-text); font-weight: 600; }
.bxb-brand .bxb-license {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bxb-footer-border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--bxb-footer-muted);
  margin-bottom: 18px;
  max-width: 380px;
}
.bxb-brand .bxb-license strong { color: var(--bxb-footer-accent-2); font-weight: 600; }

.bxb-social {
  display: flex; gap: 10px; margin-top: 6px;
}
.bxb-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--bxb-footer-border);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: all .2s ease;
}
.bxb-social a:hover {
  background: var(--bxb-footer-accent);
  border-color: var(--bxb-footer-accent);
  color: #fff !important;
  transform: translateY(-2px);
}

/* Column blocks */
.bxb-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  position: relative;
  padding-bottom: 10px;
  font-family: Roboto, sans-serif;
}
.bxb-col h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--bxb-footer-accent), var(--bxb-footer-accent-2));
  border-radius: 2px;
}
.bxb-col ul {
  list-style: none;
  margin: 0; padding: 0;
}
.bxb-col li {
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--bxb-footer-muted);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.bxb-col li::before {
  content: "›";
  color: var(--bxb-footer-accent-2);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  flex-shrink: 0;
}
.bxb-col li a { color: var(--bxb-footer-muted); }
.bxb-col li a:hover { color: #fff; }
.bxb-col li.bxb-noarrow::before { content: none; }

.bxb-col li b { color: var(--bxb-footer-text); font-weight: 600; margin-right: 4px; }

/* Contact list */
.bxb-contact { font-size: 13.5px; }
.bxb-contact li { align-items: center; }
.bxb-contact .bxb-ico {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(238, 32, 32, 0.12);
  color: var(--bxb-footer-accent-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* Newsletter form */
.bxb-news {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--bxb-footer-border);
}
.bxb-news .bxb-news-label {
  font-size: 13px; color: var(--bxb-footer-muted);
  margin: 0 0 10px;
}
.bxb-news .bxb-news-label strong { color: #fff; font-weight: 600; }
.bxb-news form {
  display: flex; gap: 8px;
}
.bxb-news input[type="email"] {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--bxb-footer-border);
  color: #fff;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s ease;
}
.bxb-news input[type="email"]:focus { border-color: var(--bxb-footer-accent-2); }
.bxb-news button {
  background: linear-gradient(135deg, var(--bxb-footer-accent), #ff5050);
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: transform .15s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.bxb-news button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(238, 32, 32, 0.35);
}

/* Bottom strip */
.bxb-bottom {
  border-top: 1px solid var(--bxb-footer-border);
  padding: 18px 0;
  margin-top: 8px;
  background: rgba(0, 0, 0, 0.25);
}
.bxb-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 12.5px;
  color: var(--bxb-footer-muted);
}
.bxb-bottom-inner .bxb-copy strong { color: #fff; font-weight: 600; }
.bxb-bottom-inner .bxb-pay {
  display: inline-flex; flex-wrap: wrap; gap: 6px;
}
.bxb-bottom-inner .bxb-pay span {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--bxb-footer-border);
  font-size: 11px;
  color: #d1d8e3;
}
.bxb-bottom-inner .bxb-responsible a { color: var(--bxb-footer-accent-2); }

/* Responsive */
@media (max-width: 960px) {
  .bxb-footer-wrap { padding-top: 40px; }
  .bxb-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
    padding-bottom: 28px;
  }
  .bxb-brand { grid-column: 1 / -1; }
  .bxb-trust-strip { gap: 10px 18px; font-size: 12.5px; margin-bottom: 28px; }
}
@media (max-width: 600px) {
  .bxb-footer-wrap { padding-top: 32px; }
  .bxb-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 22px; }
  .bxb-trust-strip { flex-direction: column; align-items: flex-start; gap: 8px; }
  .bxb-bottom-inner { flex-direction: column; align-items: flex-start; }
}
