/*** Footer start ***/
.site-footer {
  background: linear-gradient(135deg, #0c0c0c, #1a1a1a); /* gradient */
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
}

.footer-top {
  padding: 50px 0 30px;
}

/* Footer Headings as Yellow Capsules */
.footer-heading {
  display: inline-block;
  background: #f39c12;        /* yellow-gold tone */
  color: #000;                /* dark text for contrast */
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 6px 16px;
  border-radius: 25px;        /* capsule shape */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #f39c12;
}

/* Contact Us box styling */
.footer-top .col-md-3 p {
 
  padding: 8px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 3px;
}

.footer-top .col-md-3 p i {
  color: #f39c12;
  font-size: 14px;
}

/* Social icons transparent with border */
.footer-social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  color: #fff;
  background: transparent;
  border: 1px solid #555;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: #f39c12;
  color: #f39c12;
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 20px 0;
  margin-top: 20px;
  background: #0a0a0a;
}

.footer-policies a {
  color: #bbb;
  margin: 0 5px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-policies a:hover {
  color: #f39c12;
}

.footer-disclaimer {
  font-size: 12px;
  color: #aaa;
  margin-top: 10px;
}

.footer-copy {
  font-size: 12px;
  color: #777;
  margin-top: 5px;
}

/* Footer Payment Icons */
.footer-icons {
  background: #111;
  padding: 15px 0;
  text-align: center;
}

.footer-icons .icons-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-icons img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: transform 0.3s;
}

.footer-icons img:hover {
  transform: scale(1.1);
}
p a {
  color: #faa307;
  
  text-decoration: none;
  transition: color 0.3s ease;
  
}

p a:hover {
  color: #d00000; /* a slightly darker gold for hover */
  text-decoration: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .footer-icons img {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .footer-icons img {
    width: 30px;
    height: 30px;
  }
}

/* Responsive */
@media(max-width:768px){
  .footer-top { text-align: left; }
  .footer-social { margin-top: 15px; }
}

/* Footer Mobile Fix */
.footer-top {
  padding: 30px 15px;
}

.footer-top .footer-column {
  margin-bottom: 25px;
}

.footer-top h5 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.footer-top ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-top ul li {
  margin-bottom: 10px;
}

.footer-top ul li a {
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
}

.footer-top ul li a:hover {
  color: #f03d4b;
}

/* Payment / DMCA Icons */
.footer-icons {
  padding: 15px 0;
  text-align: center;
}

.footer-icons .icons-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-icons img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
/* Add right arrow icon before footer links */
.footer-links li a {
  position: relative;
  display: inline-block;
  padding-left: 18px;  /* space for arrow */
}

.footer-links li a::before {
  content: "\f105"; /* Font Awesome right arrow (fa-angle-right) */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #f39c12;  /* match your accent color */
  font-size: 13px;
  transition: color 0.3s;
}

.footer-links li a:hover::before {
  color: #fff; /* change arrow color on hover */
}


.email-box {
  display: flex;
  align-items: center;
 
  gap: 6px;
  margin: 0;
  font-size: 12px;
  word-break: break-word;  /* breaks long words like email addresses */
}

.email-box a {
  color: #faa307;
  text-decoration: none;
  transition: color 0.3s ease;
  word-break: break-all;   /* ensures full responsiveness */
}

.email-box a:hover {
  color: #d00000;
  text-decoration: none;
}

/* Small screen optimization */
@media (max-width: 480px) {
  .email-box {
    font-size: 16px;
  }
  .email-box a {
    font-size: 16px;
    line-height: 1.3;
  }
}

/*** Footer End ***/