/* ===========================
           RESET & BASE
        =========================== */
      *,*::before,*::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }

      body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
    background-color: #ffffff;
    color: #0f172a;
    line-height: 1.5;
      }
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f8f8f8;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #fbd000, #ffef42);
  border-radius: 10px;
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: #fff;
}
.preloader .logo {
  width: 160px;
}
.preloader .barwrap {
  position: absolute;
  left: 0;
  bottom: 13px;
  width: 102%;
  transform: skew(-45deg);
  -webkit-transform: skew(-45deg);
  -moz-transform: skew(-45deg);
  overflow: hidden;
}
.preloader .bar {
  width: 100%;
  height: 3px;
  border-radius: 0;
  background-image: repeating-linear-gradient(
    -44deg,
    #010101,
    #010101 10px,
    #ffb000 10px,
    #ffb000 20px
  );
  background-size: 28px 28px;
  animation: 1s linear infinite move;
}
@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 28px 0;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none!important;
}
p{
    margin-bottom:0rem!important;
}
/* ===========================
           TRUSTPILOT STRIP
        =========================== */
.tp-strip {
 position: relative;
    padding: 20px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

.tp-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.tp-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tp-label::before,
.tp-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ebebeb;
}

/* ===========================
           FOOTER WRAPPER
        =========================== */
.footer-wrap {
  background: #0d1117;
  position: relative;
  overflow: hidden;
}

/* ===========================
           MAIN FOOTER BODY
        =========================== */
.footer-body {
  padding: 64px 24px 20px;
  position: relative;
  z-index: 1;
}

/* Background grid pattern */
.footer-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* Glow blobs */
.footer-body::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(251, 208, 0, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.glow-left {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(251, 208, 0, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 48px 32px;
  position: relative;
  z-index: 1;
}

/* ===========================
           FOOTER BRAND COL
        =========================== */
.footer-brand {
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 22px;
}

.footer-logo-link img {
  width: 200px;
  height: auto;
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

.footer-logo-link:hover img {
  opacity: 1;
}



/* Auth badge */
.auth-badge {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 28px;
  transition: border-color 0.2s ease;
}

.auth-badge:hover {
  border-color: rgba(251, 208, 0, 0.3);
}

.auth-badge__icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #fbd000, #ffa500);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.auth-badge__icon i {
  font-size: 1rem;
  color: #000;
}

.auth-badge__text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.auth-badge__text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

/* ===========================
           FOOTER NAV COLS
        =========================== */
.footer-col {
}

.footer-col__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.footer-col__title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #fff;
}

.footer-col__line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-nav li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.52);
  padding: 6px 0;
  border-radius: 6px;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.footer-nav li a .nav-arrow {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.footer-nav li a .nav-arrow svg {
  width: 8px;
  height: 8px;
  stroke: rgba(255, 255, 255, 0.3);
  transition: stroke 0.2s ease;
}

.footer-nav li a:hover {
  color: #fbd000;
  padding-left: 4px;
}

.footer-nav li a:hover .nav-arrow {
  background: rgba(251, 208, 0, 0.15);
  transform: translateX(2px);
}

.footer-nav li a:hover .nav-arrow svg {
  stroke: #fbd000;
}

/* ===========================
           FOOTER CONTACT COL
        =========================== */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 12px 14px;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.contact-card:hover {
  border-color: rgba(251, 208, 0, 0.35);
  background: rgba(251, 208, 0, 0.05);
  transform: translateX(3px);
}

.contact-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(
    135deg,
    rgba(251, 208, 0, 0.15),
    rgba(255, 165, 0, 0.1)
  );
  border: 1px solid rgba(251, 208, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card__icon i {
  font-size: 0.85rem;
  color: #fbd000;
}

.contact-card__info {
  min-width: 0;
}

.contact-card__label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 2px;
}

.contact-card__value {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Social links */
.social-head {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 12px;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.social-btn i {
  font-size: 0.95rem;
}

.social-btn--fb:hover {
  background: rgba(8, 102, 255, 0.15);
  border-color: rgba(8, 102, 255, 0.4);
  color: #4d8fff;
}
.social-btn--yt:hover {
  background: rgba(255, 0, 0, 0.12);
  border-color: rgba(255, 0, 0, 0.35);
  color: #ff5252;
}
.social-btn--li:hover {
  background: rgba(10, 102, 194, 0.15);
  border-color: rgba(10, 102, 194, 0.4);
  color: #5ba4e8;
}

.social-btn--fb i {
  color: #4d8fff;
}
.social-btn--yt i {
  color: #ff5252;
}
.social-btn--li i {
  color: #5ba4e8;
}

/* Payment section */
.payment-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 14px 16px;
}

.payment-wrap__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.payment-wrap__label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.payment-img-wrap {
  display: flex;
  align-items: center;
}

.payment-img-wrap img {
  border-radius: 4px;
}

/* ===========================
           FOOTER DIVIDER
        =========================== */
.footer-divider-line {
  max-width: 1200px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  position: relative;
  z-index: 1;
}

/* ===========================
           FOOTER BOTTOM
        =========================== */
.footer-bottom {
  padding: 20px 24px;
  position: relative;
  z-index: 1;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom__left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom__copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom__copy span {
  color: #fbd000;
  font-weight: 600;
}

/* Separator dot */
.footer-bottom__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.footer-bottom__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.footer-bottom__links a {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  padding: 4px 10px;
  border-radius: 6px;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.footer-bottom__links a:hover {
  color: #fbd000;
  background: rgba(251, 208, 0, 0.08);
}

.footer-bottom__links .sep {
  color: rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
}

/* Made with love tag */
.footer-bottom__made {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

.heart {
  color: #e63946;
  font-size: 0.85rem;
  animation: heartbeat 1.4s ease-in-out infinite;
  display: inline-block;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.25);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.15);
  }
  56% {
    transform: scale(1);
  }
}

/* ===========================
           RESPONSIVE
        =========================== */
@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    align-items: start;
  }


}

@media (max-width: 768px) {
  .footer-body {
    padding: 48px 16px 36px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .social-row {
    flex-wrap: wrap;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 540px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-logo-link img {
    width: 170px;
  }

  .footer-bottom-inner {
    align-items: center;
    text-align: center;
  }

  .footer-bottom__left {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .footer-bottom__dot {
    display: none;
  }

  .footer-bottom__links {
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .social-btn span {
    display: none;
  }
  .social-btn {
    padding: 8px 10px;
  }
}

/* Print */
@media print {
  .footer-wrap {
    background: #fff;
  }
}
