.body {
  margin: 0;
  font-family: 'Bitter', serif;
  background-color: #fffdf8;
  color: #333;
}

/* ===== FOOTER MAIN ===== */
.footer {
  background: linear-gradient(90deg, #ffb400, #ff9100);
  color: #fff;
  padding: 50px 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== LOGO SECTION ===== */
.footer-top {
  text-align: center;
  margin-bottom: 5px;
}
.footer-top h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.footer-top p {
  font-size: 0.95rem;
  color: #fffef5;
  margin-bottom: 15px;
  max-width: 420px;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
}
.footer-social {
  text-align: center;
  margin-top: 10px;
}
.footer-social a {
  display: inline-block;
  color: #fff;
  font-size: 1.3rem;
  margin: 0 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.footer-social a:hover {
  color: #222;
  transform: scale(1.1);
}

/* ===== DIVIDER ===== */
.footer-divider {
  width: 100%;
  max-width: 1100px;
  height: 1px;
  background-color: rgba(255,255,255,0.5);
  margin: 25px 0 35px;
}

/* ===== FOOTER CONTENT ===== */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  width: 100%;
  max-width: 1100px;
  justify-items: center;
}

/* ===== FOOTER COLUMNS ===== */
.footer-col {
  text-align: center;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 20px 15px;
  transition: all 0.4s ease;
}
.footer-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
  background: rgba(255,255,255,0.08);
}

.footer h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  font-weight: 700;
  position: relative;
}
.footer h3::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer ul li {
  margin: 8px 0;
}
.footer ul li a {
  text-decoration: none;
  color: #fffef5;
  font-size: 0.9rem;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer ul li a:hover {
  color: #222;
  transform: translateY(-2px);
}

/* ===== CONTACT INFO ===== */
.footer-contact p {
  margin: 6px 0;
  font-size: 0.9rem;
  line-height: 1.4;
}
.footer-contact i {
  margin-right: 8px;
  color: #fff;
  width: 18px;
  text-align: center;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
  background-color: #ff9100;
  text-align: center;
  color: #fff;
  font-size: 0.85rem;
  padding: 10px 5px;
  margin-top: 30px;
  border-radius: 0 0 12px 12px;
}
.footer-bottom a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.footer-bottom a:hover {
  color: #222;
}

/* ===== RESPONSIVE ===== */

/* Tablets */
@media (max-width: 768px) {
  .footer {
    padding: 40px 20px 15px;
  }
  .footer-top h2 {
    font-size: 1.7rem;
  }
  .footer-content {
    gap: 25px;
  }
}

/* Phones */
@media (max-width: 480px) {
  .footer {
    padding: 30px 15px 10px;
  }
  .footer-top h2 {
    font-size: 1.5rem;
  }
  .footer-top p {
    font-size: 0.85rem;
  }
  .footer-social a {
    font-size: 1.2rem;
    margin: 0 8px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: center;
  }
  .footer-col {
    padding: 15px 5px;
  }
  .footer-col h3 {
    font-size: 0.9rem;
  }
  .footer ul li a, 
  .footer-contact p {
    font-size: 0.85rem;
  }
  .footer-bottom {
    font-size: 0.8rem;
    padding: 8px 5px;
  }
}