/* Modern Bling Footer */
.bling-footer {
  background: #323232;
  color: #fff;
  font-family: Adobe Hebrew, sans-serif;
  margin-top: 3rem;
  letter-spacing: 0.01em;
}
.bling-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2.5rem 4vw 1.5rem 4vw;
  width: 100%;                /* Add this */
  box-sizing: border-box;     /* Add this */
  flex-wrap: wrap;
}
.bling-footer-col {
  flex: 1 1 220px;
  min-width: 220px;
  margin-right: 2vw;
}
.bling-footer-col h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.7em;
  letter-spacing: 0.04em;
}
.bling-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bling-footer-col ul li {
  margin-bottom: 0.5em;
}
.bling-footer-col ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.bling-footer-col ul li a:hover,
.bling-footer-col ul li a:focus {
  color: #FF9900;
}
.bling-footer-cta {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end; /* right align */
  margin-top: 0 !important;
  min-width: 320px;      /* Add this line for more width */
}
.bling-footer-cta-link {
  color: #fff;
  font-size: 1.5rem;           /* bigger text */
  font-weight: 700;
  text-decoration: underline;
  letter-spacing: 0.04em;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}
.bling-footer-cta-link span {
  font-size: 1.5em;
  margin-left: 0.2em;
}
.bling-footer-cta-link:hover {
  color: #FF9900;
}
.bling-footer-cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #323232;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  margin-left: 0.5em;
  font-size: 10px;
  transition: background 0.2s, color 0.2s;
}
.bling-footer-cta-link:hover .bling-footer-cta-arrow {
  background: #FF9900;
  color: #fff;
}
.bling-footer-cta-arrow i {
  font-size: 15px;
}
.bling-footer-logo-row {
  text-align: center;
  margin: 2.5rem 0 1.5rem 0;
}
.bling-footer-logo-text {
  font-size: 10vw;
  font-family: 'Times New Roman', Times, serif;
  font-style:normal;
  font-weight: 900;

  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.18);
  display: inline-block;
  opacity: 0;
  transform: translateY(60px); /* Start below the line */
  animation: blingLogoUp 1.2s cubic-bezier(.23,1.02,.64,1) forwards;
}
.bling-footer-logo-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px);
  animation: blingLogoUp 0.7s cubic-bezier(.23,1.02,.64,1) forwards;
}

.bling-footer-logo-text span:nth-child(1) { animation-delay: 0.05s; }
.bling-footer-logo-text span:nth-child(2) { animation-delay: 0.15s; }
.bling-footer-logo-text span:nth-child(3) { animation-delay: 0.25s; }
.bling-footer-logo-text span:nth-child(4) { animation-delay: 0.35s; }
.bling-footer-logo-text span:nth-child(5) { animation-delay: 0.45s; }
.bling-footer-logo-text span:nth-child(6) { animation-delay: 0.55s; }
.bling-footer-logo-text span:nth-child(7) { animation-delay: 0.65s; }
.bling-footer-logo-text span:nth-child(8) { animation-delay: 0.75s; }
.bling-footer-logo-text span:nth-child(9) { animation-delay: 0.85s; }
.bling-footer-logo-text span:nth-child(10) { animation-delay: 0.95s; }
.bling-footer-logo-text span:nth-child(11) { animation-delay: 1.05s; }

@keyframes blingLogoUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.bling-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 3px solid #444;      /* line mota kar diya */
  padding: 1.2rem 4vw 1.2rem 4vw;
  font-size: 1rem;
  max-width: 99vw;                /* full width */
  width: 100vw;                    /* full width */
  flex-wrap: wrap;     
  margin-right: calc(-1 * 4vw);
  box-sizing: border-box;
}
.bling-footer-bottom-links a {
  color: #fff;
  margin-right: 2em;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.bling-footer-bottom-links a:last-child {
  margin-right: 0;
}
.bling-footer-bottom-links a:hover {
  color: #FF9900;
}
.bling-footer-bottom-copy {
  color: #ccc;
  font-size: 0.98em;
}
.bling-footer-bottom-social a {
  color: #fff;
  margin-left: 1.2em;
  font-size: 1.25em;
  transition: color 0.2s;
}
.bling-footer-bottom-social a:hover {
  color: #FF9900;
}
@media (max-width: 900px) {
  .bling-footer-top {
    flex-direction: column;
    gap: 2.5rem;
    padding: 2rem 5vw 1rem 5vw;
  }
  .bling-footer-col, .bling-footer-cta {
    margin-right: 0;
    justify-content: flex-start;
  }
  .bling-footer-logo-row {
    margin: 2rem 0 1rem 0;
  }
  .bling-footer-bottom {
    flex-direction: column;
    gap: 1.2em;
    padding: 1.2rem 5vw;
  }
}