/* ======================================
   GK PRINT DESIGN – BEAUTIFUL FOOTER
   Desktop + Mobile Responsive
====================================== */

.gk-footer {
  background: #f8f8f8;
  border-top: 1px solid #ddd;
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
}

/* Layout */
.gk-footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px 35px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* Columns */
.gk-footer-col {
  flex: 1;
  min-width: 220px;
}

/* Headings */
.gk-footer h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111;
}

/* Text */
.gk-footer p {
  font-size: 13px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Links */
.gk-footer a {
  color: #0066c0;
  text-decoration: none;
  font-size: 13px;
}

.gk-footer a:hover {
  text-decoration: underline;
}

/* List */
.gk-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gk-footer ul li {
  margin-bottom: 8px;
}

/* Bottom bar */
.gk-footer-bottom {
  background: #eaeaea;
  border-top: 1px solid #d5d5d5;
  text-align: center;
  font-size: 12px;
  color: #555;
  padding: 15px 10px;
}

/* ===============================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 768px) {

  .gk-footer-container {
    flex-direction: column;
    text-align: center;
    padding: 35px 15px;
  }

  .gk-footer-col {
    margin-bottom: 25px;
  }

  .gk-footer h4 {
    font-size: 14px;
  }

  .gk-footer p,
  .gk-footer a {
    font-size: 13px;
  }
}

@media (max-width: 480px) {

  .gk-footer-container {
    padding: 30px 12px;
  }

  .gk-footer-bottom {
    font-size: 11px;
  }
}
