:root {
  --skk-accent: #f5a706;
  --skk-green: #0b4d24;
  --skk-footer-bg: #0b4d24;
  --skk-footer-text: #ffffff;
}

[data-bs-theme="dark"] {
  --skk-footer-bg: #07351a;
  --skk-footer-text: #f1f1f1;
}

footer.site-footer {
  background: var(--skk-footer-bg) !important;
  color: var(--skk-footer-text);
  padding-top: 30px;
}
footer.site-footer p,
footer.site-footer h3,
footer.site-footer svg,
footer.site-footer a {
  color: var(--skk-footer-text);
}

.footer-logo {
  height: auto;
}
.footer-tagline {
  font-size: .92rem;
  line-height: 1.6;
  opacity: .85;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .text-lg-start .footer-tagline {
    margin-left: 0;
  }
}

.footer-title {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  position: relative;
}
.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--skk-accent);
}
.text-center .footer-title::after {
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 992px) {
  .text-lg-start .footer-title::after {
    left: 0;
    transform: none;
  }
}

.footer-links li {
  margin-bottom: .55rem;
}
.footer-links a {
  display: inline-block;
  text-decoration: none;
  font-size: .92rem;
  opacity: .82;
  transition: opacity .2s ease, transform .2s ease, color .2s ease;
}
.footer-links a:hover,
.footer-links a:focus-visible {
  opacity: 1;
  color: var(--skk-accent) !important;
  transform: translateX(4px);
}
.footer-links a.footer-link-active {
  opacity: 1;
  font-weight: 700;
  color: var(--skk-accent) !important;
}
.footer-links a.footer-link-active::before {
  content: "› ";
  font-weight: 700;
}
@media (min-width: 992px) {
  .text-lg-start .footer-links a:hover,
  .text-lg-start .footer-links a:focus-visible {
    transform: translateX(4px);
  }
}

.footer-social .list-inline-item {
  margin-right: .5rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  transition: background-color .25s ease, transform .25s ease;
}
.footer-social a:hover,
.footer-social a:focus-visible {
  background: var(--skk-accent);
  transform: translateY(-3px);
}
.footer-social a:hover svg,
.footer-social a:focus-visible svg {
  color: #1a1a1a !important;
}

.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .15);
  margin: 2.5rem 0 1.25rem;
}
.footer-bottom {
  font-size: .85rem;
  opacity: .8;
}
.footer-credits {
  text-decoration: none;
  font-weight: 600;
  transition: color .2s ease;
}
.footer-credits:hover,
.footer-credits:focus-visible {
  color: var(--skk-accent) !important;
}

@media (prefers-reduced-motion: reduce) {
  .footer-links a,
  .footer-social a {
    transition: none;
  }
  .footer-links a:hover,
  .footer-social a:hover {
    transform: none;
  }
}

#mainNav {
  transition: box-shadow .25s ease, background-color .25s ease;
}
#mainNav.navbar-shrink {
  box-shadow: 0 2px 14px rgba(0, 0, 0, .12);
}

#mainNav .navbar-nav .nav-link {
  position: relative;
  font-weight: 600;
  padding-left: .9rem;
  padding-right: .9rem;
  transition: color .2s ease;
}
#mainNav .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: .9rem;
  right: .9rem;
  bottom: .35rem;
  height: 2px;
  background: var(--skk-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease;
}
#mainNav .navbar-nav .nav-link:hover,
#mainNav .navbar-nav .nav-link:focus-visible,
#mainNav .navbar-nav .nav-link.active {
  color: var(--skk-accent);
}
#mainNav .navbar-nav .nav-link:hover::after,
#mainNav .navbar-nav .nav-link:focus-visible::after,
#mainNav .navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

#mainNav .btn-skk,
#mainNav .btn-skk.btn-primary {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  padding: .7rem 1.6rem !important;
  border: none !important;
  border-radius: 999px !important;
  letter-spacing: .02em;
  color: #1a1a1a !important;
  background: var(--skk-accent) !important;
  box-shadow: 0 4px 14px rgba(245, 167, 6, .45) !important;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease !important;
}
#mainNav .btn-skk:hover,
#mainNav .btn-skk:focus-visible,
#mainNav .btn-skk.btn-primary:hover,
#mainNav .btn-skk.btn-primary:focus-visible {
  background: #ffc23d !important;
  color: #1a1a1a !important;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 22px rgba(245, 167, 6, .6) !important;
}
#mainNav .btn-skk:active,
#mainNav .btn-skk.btn-primary:active {
  transform: translateY(0) scale(1);
}

@media (max-width: 991.98px) {
  #mainNav .navbar-collapse {
    padding: .5rem 0 1rem;
    margin-top: .5rem;
    border-top: 1px solid rgba(0, 0, 0, .08);
  }

  #mainNav .navbar-nav {
    margin: 0 !important;
    width: 100%;
  }
  #mainNav .navbar-nav .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
  }
  #mainNav .navbar-nav .nav-link {
    display: block;
    width: 100%;
    padding: .9rem .25rem !important;
    font-size: 1.05rem;
  }

  #mainNav .navbar-nav .nav-link::after {
    display: none;
  }
  #mainNav .navbar-nav .nav-link.active {
    color: var(--skk-accent);
    font-weight: 700;
  }
  #mainNav .navbar-nav .nav-link:active {
    background: rgba(245, 167, 6, .12);
  }

  #mainNav .btn-skk,
  #mainNav .btn-skk.btn-primary {
    display: block !important;
    width: 100%;
    margin-top: 1rem;
    padding: .9rem 1rem !important;
    text-align: center;
    justify-content: center;
    font-size: 1.05rem;
  }

  #mainNav .navbar-toggler {
    padding: .5rem .75rem;
    border: none;
  }
  #mainNav .navbar-toggler:focus-visible {
    outline: 3px solid rgba(245, 167, 6, .5);
    outline-offset: 2px;
    box-shadow: none;
  }

  #mainNav .navbar-brand-logo img {
    width: 64px;
    height: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #mainNav .navbar-nav .nav-link::after,
  #mainNav .btn-skk {
    transition: none;
  }
  #mainNav .btn-skk:hover {
    transform: none;
  }
}

[data-bs-theme="dark"] body {
  background-color: #121212;
}

.card-skk,
.card-skk .card-title,
.card-skk .card-text,
.card-skk .text-muted,
.card-skk h5,
.card-skk p,
.card-skk span {
  color: #2a2a2a;
}
.card-skk .text-muted {
  color: #5a5246 !important;
}

.card-form-wrap,
.card-form-wrap > .card-body {
  --bs-card-bg: transparent;
  --bs-card-border-color: transparent;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  box-shadow: none !important;
}

.input-light-fixed,
.input-light-fixed:focus,
.input-light-fixed:active,
.input-light-fixed:disabled,
.input-light-fixed[readonly] {
  background-color: #fff !important;
  color: #2a2a2a !important;
  -webkit-text-fill-color: #2a2a2a !important;
}
.input-light-fixed::placeholder {
  color: #8a8a8a !important;
  opacity: 1;
}
.input-light-fixed:-webkit-autofill,
.input-light-fixed:-webkit-autofill:hover,
.input-light-fixed:-webkit-autofill:focus {
  -webkit-text-fill-color: #2a2a2a !important;
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  box-shadow: 0 0 0 1000px #fff inset !important;
}

.theme-toggle {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 1050;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--skk-accent);
  color: #1a1a1a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
  transition: transform .2s ease, background-color .2s ease;
}
.theme-toggle:hover {
  transform: scale(1.08);
}
.theme-toggle:focus-visible {
  outline: 3px solid rgba(245, 167, 6, .5);
  outline-offset: 2px;
}
.theme-toggle svg {
  width: 22px;
  height: 22px;
}

.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-bs-theme="dark"] .theme-toggle .icon-sun  { display: block; }
[data-bs-theme="dark"] .theme-toggle .icon-moon { display: none; }

@media (prefers-reduced-motion: reduce) {
  .theme-toggle { transition: none; }
}

.skk-notify .skk-notify__content {
  border: none;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
  overflow: hidden;
}
.skk-notify .skk-notify__icon {
  display: flex;
  justify-content: center;
}
.skk-notify .skk-notify__icon svg {
  width: 56px;
  height: 56px;
}
.skk-notify .skk-notify__title {
  font-weight: 700;
}
.skk-notify .skk-notify__msg {
  font-size: .95rem;
  opacity: .85;
}
.skk-notify .skk-notify__btn {
  border-radius: 999px;
  font-weight: 600;
  color: #fff;
}

.skk-notify--success .skk-notify__icon { color: #1e9e54; }
.skk-notify--success .skk-notify__btn  { background: #1e9e54; }
.skk-notify--success .skk-notify__btn:hover { background: #188144; }

.skk-notify--error .skk-notify__icon { color: #d9362b; }
.skk-notify--error .skk-notify__btn  { background: #d9362b; }
.skk-notify--error .skk-notify__btn:hover { background: #b62c23; }

.skk-notify--warning .skk-notify__icon { color: #d98e00; }
.skk-notify--warning .skk-notify__btn  { background: #d98e00; }
.skk-notify--warning .skk-notify__btn:hover { background: #b67700; }

[data-bs-theme="dark"] .skk-notify .skk-notify__content {
  box-shadow: 0 12px 40px rgba(0, 0, 0, .6);
}
