@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

.footer {
  background-color: #0f231c;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 60px 40px;
  margin-top: 100px;
}

.footer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-top h2 {
  font-size: 38px;
  margin-bottom: 20px;
  line-height: 1.4;
  max-width: 600px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.cta-btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 12px 24px;
  font-size: 15px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.cta-btn.primary {
  background-color: #f37022;
  color: white;
}

.cta-btn.primary:hover {
  background-color: #e46317;
  transform: translateY(-2px);
}

.cta-btn.secondary {
  background-color: #ffffff;
  color: #0f231c;
}

.cta-btn.secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.footer-top hr {
  border: 0;
  border-top: 1px solid #2d4b3c;
  margin: 40px 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
}

.footer-brand {
  flex: 1 1 250px;
}

.footer-brand img.logo {
  max-width: 130px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.social-title {
  font-weight: 600;
  margin: 20px 0 10px;
  font-size: 15px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 5px;
}

.social-icons i {
  font-size: 16px;
  color: #e76f25;
  transition: transform 0.2s ease;
}

.social-icons i:hover {
  transform: scale(1.2);
}

.footer-links {
  flex: 1 1 180px;
}

.footer-links h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links ul li i {
  color: #f37022;
}

.footer-contact {
  flex: 1 1 240px;
  
}

.footer-contact h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.footer-contact p {
  font-size: 14px;
  color: #ccc;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: #f37022;
  font-size: 16px;
}
