/* Modal overlay */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Modal content split into two */
.modal-content {
  background: #fff;
  border-radius: 10px;
  width: 80%;
  max-width: 1100px;
  display: flex;
  overflow: hidden;
  position: relative;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  color: #666;
  font-size: 14px;
}

/* Left Side */
.contact-info {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-right: 1px solid #ddd;
  height: 100%;
}

.brand-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-bottom: 30px;
  position: fixed;
  left: 140px;
  z-index: 1;
}

.info-box {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
  border: none;
  box-shadow: none;
}

.info-box h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.info-box p,
.info-box strong {
  margin: 4px 0;
  font-size: 12px;
  color: #111219;
  text-decoration: none;
}
.info-box a {
  color: #51c3e9;
  margin: 4px 0;
  font-size: 12px;
  text-decoration: underline;
}
/* Right Side */
.contact-form {
  flex: 1.2;
  background: #6b63ff;
  color: #fff;
  padding: 20px;
  width: 80%;
  margin: 50px auto;
  border-radius: 20px;
}

.contact-form h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}
input::placeholder {
  color: #ffffff66;
}
textarea::placeholder {
  color: #ffffff66;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  padding: 10px 5px;
  font-size: 14px;
  color: #fff;
  outline: none;
}

.contact-form option {
  color: #000;
}

.contact-form textarea {
  resize: none;
  height: 80px;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  border-radius: 25px;
  border: none;
  background: #f7da30;
  color: #000;
  font-size: 16px;
  cursor: pointer;
}

.submit-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.store-btn.disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}

.disabled {
  pointer-events: none;  
  opacity: 0.5;           
  cursor: not-allowed;    
}