/* ============================================
   NEW CONTACT SECTION
   ============================================ */

.new-contact {
  position: relative;
  padding: 120px 0 140px;
  background: #c3c3c3;
  overflow: hidden;
  transition: background 0.4s ease;
}

.new-contact * {
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, fill 0.3s ease, stroke 0.3s ease;
}

html[data-theme="dark"] .new-contact {
  background: #020617;
}

.new-contact__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.new-contact__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Side - Info */
.new-contact__left {
  animation: slideInLeft 0.8s ease-out;
}

.cf-reveal .new-contact__left {
  animation: none !important;
}

/* Middle - Phone Image */
.new-contact__middle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.new-contact__phone {
  width: clamp(240px, 26vw, 360px);
  max-width: none;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(168, 85, 247, 0.3));
  animation: phoneShakeAndPulse 3s ease-in-out infinite;
  transform: rotate(-8deg);
  transition: filter 0.3s ease;
}

html[data-theme="dark"] .new-contact__phone {
  filter: drop-shadow(0 20px 60px rgba(168, 85, 247, 0.5));
}

@keyframes phoneShakeAndPulse {
  0%, 100% {
    transform: translateY(0) scale(1) rotate(-8deg);
  }
  10% {
    transform: translateY(-3px) scale(1.02) rotate(-9deg);
  }
  20% {
    transform: translateY(0) scale(1.03) rotate(-7deg);
  }
  30% {
    transform: translateY(-2px) scale(1.02) rotate(-8.5deg);
  }
  40% {
    transform: translateY(0) scale(1) rotate(-8deg);
  }
  50% {
    transform: translateY(0) scale(1.05) rotate(-8deg);
  }
  60% {
    transform: translateY(0) scale(1) rotate(-8deg);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.new-contact__heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 24px 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

html[data-theme="dark"] .new-contact__heading {
  color: #f5f5f7;
}

.new-contact__plus {
  color: #a855f7;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.new-contact__description {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #6b7280;
  margin: 0 0 26px 0;
  max-width: 520px;
}

html[data-theme="dark"] .new-contact__description {
  color: #9ca3af;
}

.new-contact__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
}

.new-contact__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 32px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.new-contact__btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.new-contact__btn:hover::before {
  width: 300px;
  height: 300px;
}

.new-contact__btn--call {
  background: rgba(240, 240, 245, 0.9);
  color: #1a1a1a;
  border: 1px solid rgba(200, 200, 215, 0.4);
}

html[data-theme="dark"] .new-contact__btn--call {
  background: #f5f5f7;
  color: #1a1a1a;
}

.new-contact__btn--call:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  background: rgba(245, 245, 250, 1);
}

html[data-theme="dark"] .new-contact__btn--call:hover {
  box-shadow: 0 12px 24px rgba(245, 245, 247, 0.2);
}

.new-contact__btn--message {
  background: #ffffff;
  color: #1a1a1a;
  border: 2px solid #e5e7eb;
}

html[data-theme="dark"] .new-contact__btn--message {
  background: #1e293b;
  color: #f5f5f7;
  border: 2px solid #334155;
}

.new-contact__btn--message:hover {
  border-color: #a855f7;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(168, 85, 247, 0.15);
}

.new-contact__btn svg {
  position: relative;
  z-index: 1;
}

.new-contact__btn span {
  position: relative;
  z-index: 1;
}

/* Right Side - Form */
.new-contact__right {
  animation: slideInRight 0.8s ease-out;
  max-width: 480px;
  justify-self: end;
}

.cf-reveal .new-contact__right {
  animation: none !important;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.new-contact__form {
  background: rgba(230, 230, 240, 0.6);
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(200, 200, 215, 0.4);
  transition: all 0.4s ease;
}

html[data-theme="dark"] .new-contact__form {
  background: rgba(30, 41, 59, 0.9);
  border: 1px solid rgba(51, 65, 85, 0.8);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.new-contact__form:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(168, 85, 247, 0.15);
}

html[data-theme="dark"] .new-contact__form:hover {
  box-shadow: 0 24px 70px rgba(168, 85, 247, 0.25);
}

.new-contact__form-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 28px 0;
  text-align: center;
}

html[data-theme="dark"] .new-contact__form-title {
  color: #f5f5f7;
}

.new-contact__field {
  margin-bottom: 28px;
}

.new-contact__field:first-of-type {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.new-contact__input,
.new-contact__textarea {
  width: 100%;
  padding: 12px 0;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  transition: all 0.3s ease;
  outline: none;
}

.new-contact__input--info {
  background: rgba(168, 85, 247, 0.12);
  color: rgba(168, 85, 247, 0.9);
  cursor: default;
  pointer-events: none;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(168, 85, 247, 0.2);
  text-align: center;
  width: auto;
  max-width: fit-content;
  border-radius: 20px;
}

html[data-theme="dark"] .new-contact__input--info {
  background: rgba(168, 85, 247, 0.15) !important;
  color: rgba(168, 85, 247, 0.95) !important;
  border: 1px solid rgba(168, 85, 247, 0.25) !important;
}

html[data-theme="dark"] .new-contact__input,
html[data-theme="dark"] .new-contact__textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #f5f5f7;
}

.new-contact__input:focus,
.new-contact__textarea:focus {
  border-bottom-color: #a855f7;
  background: transparent;
}

html[data-theme="dark"] .new-contact__input:focus,
html[data-theme="dark"] .new-contact__textarea:focus {
  border-bottom-color: #a855f7;
  background: transparent;
}

.new-contact__input::placeholder,
.new-contact__textarea::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .new-contact__input::placeholder,
html[data-theme="dark"] .new-contact__textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.new-contact__textarea {
  resize: vertical;
  min-height: 120px;
}

.new-contact__submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.new-contact__submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.new-contact__submit:hover::before {
  left: 100%;
}

.new-contact__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(168, 85, 247, 0.4);
}

.new-contact__submit:active {
  transform: translateY(0);
}

/* ============================================
   SITE FOOTER
   ============================================ */

.site-footer {
  padding: 60px 0 40px;
  background: #c3c3c3;
  transition: background 0.4s ease;
}

.site-footer * {
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, fill 0.3s ease, stroke 0.3s ease, opacity 0.3s ease;
}

html[data-theme="dark"] .site-footer {
  background-color: #020617;
  background-image: linear-gradient(
    0deg,
    rgba(21, 26, 47, 0.78) 0%,   /* dno footera - jači glow */
    rgba(21, 26, 47, 0.52) 20%,
    rgba(21, 26, 47, 0.26) 35%,
    rgba(21, 26, 47, 0.0) 50%,    /* na 50% potpuno nestane */
    rgba(21, 26, 47, 0.0) 100%   /* gornjih 50% je čisti #020617 */
  );
}

.site-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.site-footer__card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 50px 60px 40px;
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.8), 0 18px 60px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

html[data-theme="dark"] .site-footer__card {
  background: rgba(10, 14, 28, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.6);
}

.site-footer__card > * {
  position: relative;
  z-index: 1;
}

/* Main Row: Brand left, Nav right */
.site-footer__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.site-footer__brand {
  animation: siteFooterFadeUp 0.7s ease both;
}

.cf-reveal .site-footer__brand {
  animation: none !important;
}

.site-footer__nav {
  animation: siteFooterFadeUp 0.7s ease 0.08s both;
}

.cf-reveal .site-footer__nav {
  animation: none !important;
}

/* Brand */
.site-footer__brand {
  flex-shrink: 0;
}

.site-footer__logo-wrap {
  position: relative;
  width: 160px;
  height: auto;
  margin: 0 0 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: visible;
}

.site-footer__logo {
  width: 160px;
  height: auto;
  display: block;
  transition: filter 0.4s ease, transform 0.3s ease;
}

.site-footer__logo {
  filter: brightness(0.3) grayscale(1);
}

html[data-theme="dark"] .site-footer__logo {
  filter: none;
}

html[data-theme="dark"] .site-footer__logo-wrap:hover::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 50%;
  width: 160px;
  height: 160px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(168, 85, 247, 0.35), transparent 65%);
  filter: blur(15px);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

html[data-theme="dark"] .site-footer__logo-wrap:hover .site-footer__logo {
  filter: brightness(1.3) drop-shadow(0 0 18px rgba(168, 85, 247, 0.45));
  transform: translateY(-2px);
  position: relative;
  z-index: 1;
}

.site-footer__tagline {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}

html[data-theme="dark"] .site-footer__tagline {
  color: rgba(255, 255, 255, 0.65);
}

/* Navigation */
.site-footer__nav {
  display: flex;
  gap: 80px;
}

.site-footer__col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(17, 24, 39, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 24px 0;
}

html[data-theme="dark"] .site-footer__col h4 {
  color: rgba(255, 255, 255, 0.35);
}

.site-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__col ul li {
  margin-bottom: 10px;
}

.site-footer__col ul a,
.site-footer__col a {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1f2937;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
  display: inline-block;
  position: relative;
  padding-bottom: 4px;
}

.site-footer__col ul a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #a855f7;
  transition: width 0.4s ease;
}

.site-footer__col ul a:hover::after {
  width: 100%;
}

.site-footer__col ul a:hover {
  color: #a855f7;
}

html[data-theme="dark"] .site-footer__col a {
  color: rgba(255, 255, 255, 0.7);
}

html[data-theme="dark"] .site-footer__col ul a,
html[data-theme="dark"] .site-footer__col ul span {
  color: rgba(255, 255, 255, 0.7);
}

html[data-theme="dark"] .site-footer__col ul a:hover {
  color: rgba(255, 255, 255, 0.95);
}

html[data-theme="dark"] .site-footer__col ul a::after {
  background: #a855f7;
}

/* Contact column */
.site-footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer__contact a {
  color: inherit;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-footer__contact a:hover {
  color: #a855f7;
  transform: translateX(8px);
}

html[data-theme="dark"] .site-footer__contact a:hover {
  color: #a855f7;
  filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.5));
}

.site-footer__contact a:hover svg {
  color: #a855f7;
}

.site-footer__contact-item {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
  transition: color 0.2s ease;
}

html[data-theme="dark"] .site-footer__contact-item {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer__contact svg {
  opacity: 0.5;
  flex-shrink: 0;
}

/* Bottom Row */
.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 32px 0;
  margin: 0 0px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  animation: siteFooterFadeUp 0.7s ease 0.16s both;
  column-gap: 28px;
}

.cf-reveal .site-footer__bottom {
  animation: none !important;
}

html[data-theme="dark"] .site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Social */
.site-footer__social {
  display: flex;
  gap: 8px;
  justify-self: start;
}

.site-footer__social a {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: rgba(248, 250, 252, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
}

.site-footer__social a svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: filter 0.3s ease, transform 0.3s ease, stroke 0.3s ease;
}

.site-footer__social a:hover {
  transform: translateY(-2px);
}

.site-footer__social a:hover svg {
  transform: scale(1.06);
  filter: drop-shadow(0 0 10px rgba(248, 250, 252, 0.8));
}

html:not([data-theme="dark"]) .site-footer__social a {
  color: rgba(17, 24, 39, 0.8);
}

/* Legal */
.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-self: center;
}

.site-footer__legal a {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__legal a:hover {
  color: #1f2937;
}

html[data-theme="dark"] .site-footer__legal a {
  color: rgba(255, 255, 255, 0.65);
}

html[data-theme="dark"] .site-footer__legal a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer__legal span {
  color: rgba(17, 24, 39, 0.18);
  font-size: 10px;
}

html[data-theme="dark"] .site-footer__legal span {
  color: rgba(255, 255, 255, 0.22);
}

/* Copyright */
.site-footer__copyright {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(17, 24, 39, 0.5);
  margin: 0;
  text-align: right;
  justify-self: end;
}

html[data-theme="dark"] .site-footer__copyright {
  color: rgba(255, 255, 255, 0.6);
}

@keyframes siteFooterFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer__brand,
  .site-footer__nav,
  .site-footer__bottom {
    animation: none !important;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
  .new-contact__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .new-contact__middle {
    order: 2;
  }
  
  .new-contact__right {
    justify-self: center;
    max-width: 100%;
  }
  
  .new-contact__phone {
    max-width: 240px;
  }

  .site-footer__main {
    flex-direction: column;
    gap: 50px;
  }

  .site-footer__nav {
    gap: 50px;
  }

  .site-footer__logo-wrap {
    margin-bottom: 20px;
  }
}

@media (max-width: 1024px) {
  .site-footer__nav {
    flex-wrap: wrap;
    gap: 40px;
  }

  .site-footer__col {
    min-width: 140px;
  }
}

@media (max-width: 768px) {
  .new-contact {
    padding: 80px 0 100px;
  }

  .new-contact__container {
    padding: 0 24px;
  }
  
  .new-contact__grid {
    gap: 40px;
  }

  .new-contact__heading {
    font-size: 48px;
  }

  .new-contact__description {
    font-size: 16px;
  }
  
  .new-contact__phone {
    max-width: 200px;
  }

  .site-footer__container {
    padding: 0 24px;
  }

  .site-footer__card {
    padding: 32px 24px;
  }

  .site-footer__main {
    margin-bottom: 40px;
  }

  .site-footer__nav {
    flex-direction: column;
    gap: 30px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin: 0 24px;
  }

  .site-footer__legal {
    flex-wrap: wrap;
  }

  .site-footer__copyright {
    order: 3;
  }
}

@media (max-width: 640px) {
  .new-contact {
    padding: 60px 0 80px;
  }

  .new-contact__heading {
    font-size: 42px;
  }

  .new-contact__description {
    font-size: 16px;
  }

  .new-contact__actions {
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
  }

  .new-contact__btn {
    flex-shrink: 1;
    white-space: normal;
  }

  .new-contact__form {
    padding: 30px 24px;
  }

  .site-footer {
    padding: 40px 0 30px;
  }

  .site-footer__card {
    padding: 28px 20px;
  }

  .site-footer__logo-wrap {
    width: 90px;
  }

  .site-footer__logo {
    width: 90px;
  }

  .site-footer__bottom {
    margin: 0 20px;
  }
}


/* ============================================
   SEAMLESS FOOTER FOR BLOG ARTICLES
   (Only in Dark Mode)
   ============================================ */

/* 1. Base Footer Wrapper */
html[data-theme="dark"] body.article-detail-page .site-footer {
  background: transparent !important;
  border-top: none !important;
  box-shadow: none !important;
  padding-top: 0 !important;
}

/* 2. Force Dark Card Style */
html[data-theme="dark"] body.article-detail-page .site-footer__card {
  background: rgba(10, 14, 28, 0.94) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.6) !important;
}

/* 3. Force Light Text Colors */
html[data-theme="dark"] body.article-detail-page .site-footer__tagline {
  color: rgba(255, 255, 255, 0.65) !important;
}

html[data-theme="dark"] body.article-detail-page .site-footer__col h4 {
  color: rgba(255, 255, 255, 0.35) !important;
}

html[data-theme="dark"] body.article-detail-page .site-footer__col a,
html[data-theme="dark"] body.article-detail-page .site-footer__col ul a,
html[data-theme="dark"] body.article-detail-page .site-footer__col ul span {
  color: rgba(255, 255, 255, 0.7) !important;
}

html[data-theme="dark"] body.article-detail-page .site-footer__col ul a:hover {
  color: rgba(255, 255, 255, 0.95) !important;
}

html[data-theme="dark"] body.article-detail-page .site-footer__contact-item {
  color: rgba(255, 255, 255, 0.75) !important;
}

html[data-theme="dark"] body.article-detail-page .site-footer__contact a:hover {
  color: #a855f7 !important;
  filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.5));
}

html[data-theme="dark"] body.article-detail-page .site-footer__social a {
  color: rgba(255, 255, 255, 0.65) !important;
}

html[data-theme="dark"] body.article-detail-page .site-footer__social a:hover {
  color: rgba(255, 255, 255, 0.95) !important;
}

html[data-theme="dark"] body.article-detail-page .site-footer__social a:hover svg {
  filter: drop-shadow(0 0 10px rgba(248, 250, 252, 0.8)) !important;
}

html[data-theme="dark"] body.article-detail-page .site-footer__legal a {
  color: rgba(255, 255, 255, 0.65) !important;
}

html[data-theme="dark"] body.article-detail-page .site-footer__legal a:hover {
  color: rgba(255, 255, 255, 0.9) !important;
}

html[data-theme="dark"] body.article-detail-page .site-footer__legal span,
html[data-theme="dark"] body.article-detail-page .site-footer__copyright {
  color: rgba(255, 255, 255, 0.22) !important;
}

html[data-theme="dark"] body.article-detail-page .site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* 4. Ensure Logo is White */
html[data-theme="dark"] body.article-detail-page .site-footer__logo {
  filter: none !important;
}

