/* Reset and Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f5f5f5;
}

/* Footer */
footer {
  background-color: #1e1e2f;
  color: #ffffff;
  width: 100%;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  padding: 60px 20px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-column h4 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 20px;
  border-bottom: 2px solid #04AA6D;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ccc;
  font-size: 15px;
  transition: 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ffffff;
}

/* Bottom Section */
.footer-bottom {
  background-color: #1e1e2f;
  text-align: center;
  padding: 20px 10px;
  border-top: 1px solid white;
  width: 90%;
  margin-left: 5%;
}

.footer-bottom p {
  color: #999;
  font-size: 14px;
}

/* Social Icons */
.social-icons {
  margin-bottom: 15px;
}

.social-icons a {
  color: #ccc;
  font-size: 20px;
  margin: 0 12px;
  display: inline-block;
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: #04AA6D;
}

/* Review Us Section */
.review-us {
  background: linear-gradient(135deg, #f1f8ff, #e3f2fd);
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #ddd;
  animation: fadeIn 1.2s ease;
}

.review-us h2 {
  font-size: 30px;
  margin-bottom: 12px;
  color: #1a237e;
}

.review-us p {
  font-size: 17px;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.5;
}

.review-btn {
  display: inline-block;
  background: #4285F4;
  color: white;
  padding: 14px 30px;
  font-size: 17px;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(66, 133, 244, 0.3);
  transition: all 0.3s ease;
}

.review-btn:hover {
  background: #3367d6;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(66, 133, 244, 0.4);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }

  .footer-column {
    text-align: center;
  }

  .footer-column h4 {
    border: none;
  }

  .social-icons a {
    font-size: 20px;
    margin: 0 10px;
  }

  .footer-bottom p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .footer-column ul li a {
    font-size: 14px;
  }

  .footer-column h4 {
    font-size: 16px;
  }

  .review-us h2 {
    font-size: 24px;
  }

  .review-us p {
    font-size: 15px;
  }

  .review-btn {
    font-size: 15px;
    padding: 12px 24px;
  }
}
