












.footer {
  background: #2a241f;
  color: white;
  padding: 50px 20px;
  font-family: sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
}

.footer-form {
  width: 45%;
  min-width: 300px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 20px;
}

.footer-input,
.footer-textarea {
  width: 100%;
  padding: 12px;
  background: #3a332d;
  border: 1px solid #6f675e;
  color: white;
  margin-bottom: 12px;
  border-radius: 6px;
}

.footer-textarea {
  height: 120px;
}

.footer-btn {
  width: 100%;
  background: #5c823a;
  color: white;
  padding: 14px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  margin-bottom: 25px;
}

.follow-title {
  margin-bottom: 10px;
}

.footer-social a {
  color: white;
  font-size: 22px;
  margin-right: 12px;
}

.footer-info {
  width: 45%;
  min-width: 280px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-box h3 {
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-box a {
  display: block;
  color: #d7d7d7;
  text-decoration: none;
  margin: 6px 0;
}

.footer-box a:hover {
  color: white;
}



.modal-overlay{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.5);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:999;
}

.modal{
  background:#fff;
  width:90%;
  max-width:380px;
  padding:25px;
  border-radius:10px;
  text-align:center;
  font-family:Arial, sans-serif;
}

.modal h2{
  margin-top:0;
  font-weight:600;
}

.modal p{
  font-size:14px;
  color:#444;
}

.email{
  margin:12px 0;
  font-size:16px;
  font-weight:bold;
}

.input-box{
  position:relative;
  margin:15px 0;
}

.input-box input{
  width:100%;
  padding:12px 45px 12px 12px;
  font-size:15px;
  border:1px solid #bbb;
  border-radius:6px;
}

.input-box .toggle{
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
  cursor:pointer;
  font-size:18px;
}

.btn{
  width:100%;
  padding:12px;
  background:#007bff;
  color:#fff;
  border:none;
  border-radius:6px;
  font-size:16px;
  cursor:pointer;
  margin-top:10px;
}

.cancel-btn{
  margin-top:10px;
  width:100%;
  padding:10px;
  border:none;
  background:none;
  color:#444;
  font-size:15px;
  cursor:pointer;
}

