/* ================= FOOTER ================= */

.footer {
  position: relative;
  width: 100%;
  background: #F47419;
  border-radius: 60px 60px 0 0;
  padding: 80px 100px 40px;
  color: #ffffff;
  margin-top: 100px;
  box-sizing: border-box;
  overflow: hidden;
}

/* Wrapper */
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  max-width: 1400px;
  margin: auto;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Left Section */
.footer-left {
  flex: 1;
  min-width: 300px;
  position: relative;
  z-index: 1;
}

.footer-left h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.footer-left p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 420px;
}

/* Right Section */
.footer-right {
  display: flex;
  gap: 40px;
  flex-wrap: nowrap;
  flex: 1.5;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  opacity: 0.85;
  transition: 0.3s ease;
}

.footer-column ul li a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Bottom Section */
.footer-bottom {
  text-align: center;
  margin-top: 60px;
  font-size: 14px;
  opacity: 0.85;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.brand-logo-img {
  height: 50px;
  width: auto;
  display: block;
}

/* ================= SOCIAL MEDIA ICONS ================= */
.footer-social {
  margin-top: 24px;
  position: relative;
  z-index: 2;
}

.social-title {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
  margin-top: 0;
}

.social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.social-icon:hover {
  background: #fff;
  color: #F47419;
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.social-icon i {
  pointer-events: none;
}

/* ================= CONTACT INFO IN FOOTER ================= */
.footer-column {
  flex: 1;
  min-width: 150px;
}

.footer-contact {
  min-width: 180px;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.contact-item i {
  font-size: 16px;
  color: #fff;
  margin-top: 2px;
  min-width: 16px;
}

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-item strong {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: block;
  margin-bottom: 1px;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  line-height: 1.4;
}

.contact-item a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ================= NEWSLETTER SUBSCRIBE ================= */
.footer-newsletter {
  max-width: 1400px;
  margin: 30px auto 0;
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 1;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  font-size: 13px;
  font-weight: 500;
  outline: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  cursor: text;
}

.newsletter-form input[type="email"]:focus {
  border-color: #fff;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
}

.newsletter-form input[type="email"]::placeholder {
  color: #999;
}

.newsletter-btn {
  padding: 12px 22px;
  background: #fff;
  color: #F47419;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.newsletter-btn:hover {
  background: #F47419;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 116, 25, 0.3);
}

.newsletter-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.newsletter-btn:hover i {
  transform: translateX(2px);
}

.newsletter-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.newsletter-success i {
  font-size: 18px;
  color: #22c55e;
}

/* Mobile Responsiveness for Footer */
@media (max-width: 768px) {
  .footer {
    padding: 50px 30px 30px;
    border-radius: 40px 40px 0 0;
    margin-top: 60px;
  }

  .footer-wrapper {
    gap: 40px;
    flex-direction: column;
  }

  .footer-right {
    gap: 40px;
    flex-direction: column;
  }
  
  .footer-column {
    min-width: 100%;
  }
  
  .footer-newsletter {
    padding: 18px 20px;
    margin: 25px auto 0;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input[type="email"] {
    width: 100%;
  }
  
  .newsletter-btn {
    width: 100%;
    justify-content: center;
  }
}