/* ============================
   GGR Premium Footer
   ============================ */

.ggr-footer {
  background: linear-gradient(180deg, #0b1321 0%, #0f172a 100%);
  color: #cbd5e1;
  font-family: "Plus Jakarta Sans", sans-serif;
  padding: 80px 20px 0;
  position: relative;
  overflow: hidden;
}

/* Top Accent Line */
.ggr-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #00bfa5, #0073aa);
}

/* Inner Grid */
.ggr-footer-inner {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 60px;
  padding-bottom: 70px;
}

/* ---- Column Base ---- */
.ggr-footer .footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.ggr-footer .footer-col p {
  line-height: 1.7;
  color: #a9b8cf;
  font-size: 15px;
}

/* ---- Quick Links ---- */
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
  display: inline-block;
  position: relative;
}

.footer-col ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: linear-gradient(90deg, #0073aa, #00bfa5);
  transition: width 0.3s ease;
}

.footer-col ul li a:hover {
  color: #00bfa5;
}

.footer-col ul li a:hover::after {
  width: 100%;
}

/* ---- Socials ---- */
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.footer-socials a {
  border: 1px solid #1e293b;
  color: #cbd5e1;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}

.footer-socials a:hover {
  background: linear-gradient(90deg, #0073aa, #00bfa5);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 191, 165, 0.25);
}

/* ---- Newsletter ---- */
.footer-subscribe {
  margin-top: 16px;
}

.footer-subscribe input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: none;
  background: #1e293b;
  color: #e2e8f0;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-subscribe input::placeholder {
  color: #64748b;
}

.footer-subscribe button {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #0073aa, #00bfa5);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.footer-subscribe button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 191, 165, 0.25);
}

/* ---- Footer Bottom ---- */
.ggr-footer-bottom {
  border-top: 1px solid #1e293b;
  background: #0b1321;
  padding: 20px 0;
  text-align: center;
  color: #94a3b8;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.ggr-footer-bottom a {
  color: #00bfa5;
  text-decoration: none;
  font-weight: 500;
}

.ggr-footer-bottom a:hover {
  text-decoration: underline;
}

.ggr-footer::after {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(180deg, rgba(0,191,165,0.1), transparent);
  pointer-events: none;
}
/* ---- Trust Strip (SVG + animation) ---- */
.trust-strip {
  background: linear-gradient(90deg, #0073aa, #00bfa5);
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 0;
  letter-spacing: 0.3px;
  overflow: hidden;
}

.trust-strip .trust-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-strip .icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.trust-strip .icon svg {
  stroke: #fff;
  width: 18px;
  height: 18px;
}

/* Hover micro interaction */
.trust-strip .icon:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* Fade-in animation */
.fade-in {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
   Premium Newsletter Section
=========================== */
.ggr-newsletter {
  max-width: 950px;
  margin: 100px auto 80px;
  padding: 80px 60px;
  background: linear-gradient(135deg,#0073aa 0%,#00bfa5 100%);
  border-radius: 28px;
  text-align: center;
  color: #fff;
  box-shadow: 0 15px 45px rgba(0,191,165,0.25);
  position: relative;
}

.ggr-newsletter h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.ggr-newsletter p {
  font-size: 1.05rem;
  margin-bottom: 35px;
  opacity: 0.95;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.newsletter-form input {
  width: 320px;
  max-width: 100%;
  padding: 15px 20px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  outline: none;
  transition: box-shadow 0.2s ease;
}

.newsletter-form input:focus {
  box-shadow: 0 0 0 3px rgba(0,191,165,0.4);
}

.newsletter-form button {
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  background: #fff;
  color: #0073aa;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.newsletter-form button:hover {
  background: #00bfa5;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.ggr-newsletter .disclaimer {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  opacity: 0.85;
}


/* ---- Responsive ---- */
@media (max-width: 768px) {
  .ggr-footer-inner {
    gap: 40px;
    text-align: left;
  }
  .footer-subscribe input,
  .footer-subscribe button {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .trust-strip .trust-icons {
    gap: 14px;
    flex-direction: column;
  }
  .trust-strip {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .ggr-newsletter {
    padding: 70px 40px;
    margin: 80px auto 60px;
  }
  .ggr-newsletter h2 { font-size: 1.9rem; }
}

@media (max-width: 768px) {
  .ggr-newsletter {
    padding: 60px 25px;
    margin: 70px 15px 50px;
  }
  .ggr-newsletter p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input {
    width: 100%;
  }
  .newsletter-form button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .ggr-newsletter {
    padding: 50px 20px;
    margin: 60px 10px 40px;
  }
  .ggr-newsletter h2 { font-size: 1.6rem; }
  .ggr-newsletter p { font-size: 0.9rem; }
}

